如何在24小时内显示最受欢迎的分类标准(Wordpress)

时间:2014-07-04 12:49:16

标签: php wordpress

我希望在过去24小时内显示最佳/最常见的分类。

URLS就像 在管理员:http://domain.com/wp-admin/edit-tags.php?taxonomy=store&post_type=coupon_type

在实时网站上:http://domain.com/store/merchant-name

目前使用此代码显示分类

  <?php // taxonomies
  $id = get_the_ID();
  foreach ( get_object_taxonomies( get_post_type($id) ) as $taxonomy ) {
    $terms_list = get_the_term_list( $id, $taxonomy, '', '<span class="tax-sep">'.__( ',    ', 'twentytwelve' ).'</span>','' );
    if ( $terms_list ) 
     {
          echo $terms_list;
     }
    }
?>

2 个答案:

答案 0 :(得分:1)

没有跟踪分类数量的视图。您可以购买this plugin这样的插件 - 我从未使用过它。或者你可以构建自己的钩子来跟踪瞬态中的各个分类法。

要记住的一件事是缓存,请确保您没有使用非常硬的缓存,这样您就无法捕获所有跟踪数据。

答案 1 :(得分:0)

自定义帖子类型的浏览次数最多

Using this plugin

Install it in your theme and use taxonomy code format and 

get most view taxonomy post  using 
  

'meta_key'=&gt; '视图'

And custom post type code hear