Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'theme_mod_jnews_single_show_featured', 'disable_featured_image_cpt' );
- function disable_featured_image_cpt( $value ) {
- if ( is_single() && 'video' === get_post_type() ) { /* change video with your post type slug */
- return false;
- }
- return $value;
- }
Advertisement
Add Comment
Please, Sign In to add comment