JohnPaulDesign
5/8/2017 - 11:51 AM

Genesis Customise the post-info function

Genesis Customise the post-info function

// Customise the post-info function */
add_filter( 'genesis_post_info', 'eia_post_info' );
function eia_post_info($post_info) {
	if (!is_page()) {
		$post_info = '[post_date]';
		return $post_info;
	}
}