• 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)
  • Plugin Author cyrillbolliger

    (@cyrillbolliger)

    Thanks a lot for leaving a review and sharing your experience with the community. I’m glad the plugin serves your needs.

Viewing 1 replies (of 1 total)
  • The topic ‘Works great!’ is closed to new replies.