Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Created July 18, 2021 10:07
Show Gist options
  • Select an option

  • Save mennwebs/1bceddef101785ffcf6c487a511f9f7f to your computer and use it in GitHub Desktop.

Select an option

Save mennwebs/1bceddef101785ffcf6c487a511f9f7f to your computer and use it in GitHub Desktop.
Seed Stat - Most Popular (Last 30 Days)
<div class="most-popular">
<?php
$args = array(
'posts_per_page' => 5,
'orderby' => 'meta_value_num',
'order' => 'DESC',
'meta_key' => 's_stat',
'date_query' => array(
'after' => '30 days ago'
)
);
$the_query = new WP_Query($args);
?>
<?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
<?php get_template_part('template-parts/content', 'card'); ?>
<?php endwhile; wp_reset_postdata(); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment