我有 wordpress 插件,我有这个查询和过滤器:
<?php
function filter_where($where = '') {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-7 days')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
?>
<?php query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC&ignore_sticky_posts=1&posts_per_page='. $numposts ); ?>
我需要获取 7 天内阅读次数最多的帖子,但此查询仅显示最近 7 天的帖子,当我在过去 7 天内没有输入任何帖子时,插件将显示没有帖子 = 我必须写帖子......但是我想让它始终显示 7 天内阅读次数最多的帖子...
非常感谢