Works great!
-
I was able to get this working on Genesis Press themes by adding the following code.
function wp234_featured_post_image($v) { global $post; if ( is_singular( 'post' ) && get_post_meta( $post->ID, 'cybocfi_hide_featured_image', true ) ) { return '<!-- hide featured image --> '; } return $v; } add_filter( 'genesis_pre_get_image', 'wp234_featured_post_image', 8 );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Works great!’ is closed to new replies.