arie_cristianD

disable featured image on CPT

Jul 21st, 2025
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'theme_mod_jnews_single_show_featured', 'disable_featured_image_cpt' );
  2.  
  3. function disable_featured_image_cpt( $value ) {
  4.     if ( is_single() && 'video' === get_post_type() ) { /* change video with your post type slug */
  5.         return false;
  6.     }
  7.     return $value;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment