我正在使用WordPress插件“我推荐这个”,它允许人们“喜欢”帖子。该值存储为一个元键,我们可以对其进行查询以生成“最推荐”页面。
插件->http://wordpress.org/support/plugin/i-recommend-this
循环。
<?php
query_posts(\'&orderby=meta_value&meta_key=_recommended\');
if (have_posts()): while (have_posts()) : the_post();
?>
<article <?php post_class(\'item-post block\'); ?> id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
</article>
<?php endwhile; ?>
<?php endif; ?>
这很有效,它可以找到最推荐的帖子。
两个问题。
我如何将回复的帖子限制在最近3个月内?
类似地,我怎么能有一个“本周最受欢迎”按钮,允许用户查看过去7天帖子的过滤结果?