Advertisement
Aurangajeb

Remove default feature image from the page post type

Mar 20th, 2020
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. /**
  2. Remove default feature image from the page post type. Please make sure you have the Defautl Feature Image Plugin activated & enable
  3. **/
  4.  
  5. function dfi_posttype_book ( $dfi_id, $post_id ) {
  6. $post = get_post($post_id);
  7. if ( 'wpuf-post-forms' === $post->post_type ) {
  8. return null; // no image
  9. }
  10. return $dfi_id; // the original featured image id
  11. }
  12. add_filter( 'dfi_thumbnail_id', 'dfi_posttype_book', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement