我希望在wordpress的侧边栏中获得最后5个热门帖子。 但是不行。为什么呢?
$popularpost = new WP_Query( array(
'meta_key' => 'post_views_count',
'orderby' => 'meta_value_num',
'posts_per_page' => 5
) );
if ($popularpost->have_posts()) {
while ( $popularpost->have_posts() ) : $popularpost->the_post() ?>
<article class="post-side">
<span><?php the_date(); ?></span>
<a href="<?php the_permalink(); ?>" target="_parent"><h5><?php the_title(); ?></h5></a>
</article>
<?php endwhile; } ?>