Created
July 18, 2021 10:07
-
-
Save mennwebs/1bceddef101785ffcf6c487a511f9f7f to your computer and use it in GitHub Desktop.
Seed Stat - Most Popular (Last 30 Days)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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