如何在单个页面上显示我浏览次数最多的帖子?
此刻,我创建了一个由 get_template_part() 调用的新模板页面 (content-most-viewed.php);
在互联网上,我读到 query_posts 可以解决我的问题,但似乎失败了。
这是我的模板:
<?php query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC');
//query_posts('post_type=post&posts_per_page=10&orderby=comment_count&order=DESC');?>
<div class="post">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="heading">
<h2><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
</div>
<?php the_content();?>
<div class="link-holder"><a href="/index.php">Retour</a></div>
<?php endwhile; ?>
<?php else : ?>
<div class="heading">
<h2>Not Found</h2>
</div>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
但是,我只能获取最近的帖子,或者“未找到”(任何结果)
提前,谢谢!