0

如何在单个页面上显示我浏览次数最多的帖子?

此刻,我创建了一个由 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>

但是,我只能获取最近的帖子,或者“未找到”(任何结果)

提前,谢谢!

4

1 回答 1

1

WordPress 本身不会跟踪查看帖子的数量,有插件可以执行此操作:WPP插件库
这些插件将具有内置功能来执行此操作。

旁注
不要使用query_posts它对性能不好。代替使用WP_query。不好的原因:https ://wordpress.stackexchange.com/a/50762/10911,https : //wordpress.stackexchange.com/a/50762/10911

于 2012-12-14T13:22:25.570 回答