List the 5 most popular posts tagged "basic".
This file contains 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
<?php | |
echo '<h4>Popular Basic Posts</h4>'; | |
$args = array( | |
'posts_per_page' => 5, | |
'orderby' => 'meta_value_num', | |
'meta_key' => 'be_stats', | |
'order' => 'ASC', | |
'tag' => 'basic', | |
); | |
$loop = new WP_Query( $args ); | |
if( $loop->have_posts() ): | |
echo '<ol>'; | |
while( $loop->have_posts() ): $loop->the_post(); global $post; | |
echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>'; | |
endwhile; | |
echo '</ol>'; | |
endif; | |
wp_reset_postdata(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment