Filter out posts without featured image.

Posted in: Newspaper
Post count: 3

Hello everyone,

where can I filter out posts that don’t have a featured image? Having a default image is nice, but I just don’t want those posts on the front-page.

Thank you,

Post count: 84

I would be interested in this as well. Going back to change 400+ posts seems like a daunting task.

Post count: 9544

You would likely need to come with custom query, then you would need to modify each module file youre using with custom query. That is just the broad strokes.

Post count: 3343

Hi,

Add this code like here: http://screencast.com/t/hcgJ81fw0Kg

case 'without_featured':
$wp_query_args['meta_query'] = array (
array(
'key' => '_thumbnail_id',
'compare' => 'NOT EXISTS'
)
);
break;

then this: 'Latest without image' => 'without_featured', http://screencast.com/t/iK2haKIs5T4

Result: http://screencast.com/t/Qi1H4zWK8rF
http://screencast.com/t/lSLhsQAI

Post count: 3

Thank you, that worked; although I wanted to accomplish the opposite. Show only posts with Featured Image. Only thing I had to change to your code was the compare in the array from “NOT EXISTS” to “EXISTS” and label from “Latests without image” to “Latest with image”

Thank you again.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.