Forums
Home / Plugins / Hacks / Get random post which has featured image
(@holden321)
11 years, 5 months ago
How can I get random post which has featured image?
(@graphicgeek)
This should do it:
<?php $args = array( 'post_type' => 'post', 'orderby' => 'rand', 'posts_per_page' => 1, 'meta_key' => '_thumbnail_id' ); $query = new WP_Query($args); while ( $query->have_posts() ) { $query->the_post(); //do stuff here (the_title() or the_content(), etc) } wp_reset_postdata(); ?>
Thank you!