如何按月显示观看次数最多的帖子?

时间:2013-07-03 15:54:56

标签: wordpress posts

上个月这个查询有效,现在这3天(新月开始),根本没有帖子:

<?php $current_year = date('Y'); ?>
<?php $current_month = date('m'); ?>

<?php endif;

arras_featured_loop( arras_get_option('featured1_display'),
apply_filters('arras_featured1_query', array(
    'list'              => $featured1_cat,
    'taxonomy'          => arras_get_option('featured1_tax'),
    'query'             => array( 'posts_per_page' => 15,
    'meta_key' => 'post_views_count',
    'orderby' => 'meta_value_num',
    'order' => 'DESC', 
    'year' => $current_year,
    'monthnum' => $current_month,
    'category_name' => Music,
    'posts_per_page'    => $featured1_count,
    'exclude'           => $post_blacklist,
    'post_type'         => arras_get_option('featured1_posttype')
    )
) ) );
?>

任何形式的帮助都将受到赞赏。

更新

这不是可恶的。 但现在我找到了用插件Wordpres热门帖子做到这一点的方法。

使用此代码单独使用模板:

<?php
if (function_exists( 'wpp_get_mostpopular' )) {
  wpp_get_mostpopular('range=weekly&cat=276&order_by=views&limit=8');
}
?>

现在,我需要做的是将此代码用于此模板:

<?php endif;

arras_featured_loop( arras_get_option('featured1_display'), apply_filters('arras_featured1_query', array(
    'list'              => $featured1_cat,
    'taxonomy'          => arras_get_option('featured1_tax'),
    'query'             => array(
        'posts_per_page'    => $featured1_count,
        'exclude'           => $post_blacklist,
        'post_type'         => arras_get_option('featured1_posttype')
    )
) ) );
?>

我想我需要把它放在这里:

'query'             => array( 

问题是我不知道将查询从现有的转换为带有箭头的范围'range = weekly'到'range'=&gt;每周都没有工作。

0 个答案:

没有答案