Exclude featured image on all pages
-
Be nice to have an option to exclude pages. I came across this and wonder if if can be used to exclude all pages:
function dfi_skip_page ( $dfi_id, $post_id ) {
if ( $post_id == 23 ) {
return 0; // invalid id
}
return $dfi_id; // the original featured image id
}
add_filter( ‘dfi_thumbnail_id’, ‘dfi_skip_page’, 10 , 2 );Not what to change to exclude the feated image on all pages or where to place this.
Any responses appreciated.
https://www.ads-software.com/plugins/default-featured-image/
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exclude featured image on all pages’ is closed to new replies.