【问题标题】:Display number of posts from a certain category?显示某个类别的帖子数量?
【发布时间】:2011-07-23 00:18:10
【问题描述】:

如何仅显示某个类别的帖子数量? 我只想显示没有类别名称的数字。

我用过这段代码

wp_list_categories('show_count=1&include=23&title_li=');

但它会显示类别。

有什么帮助吗??

【问题讨论】:

    标签: wordpress loops categories posts


    【解决方案1】:

    我认为阅读这篇文章会对您有所帮助 => http://wordpress.org/support/topic/display-number-of-posts-per-category

    function number_postpercat($idcat) {
        global $wpdb;
        $query = "SELECT count FROM $wpdb->term_taxonomy WHERE term_id = $idcat";
        $num = $wpdb->get_col($query);
        echo $num[0];
    

    }

    【讨论】:

      猜你喜欢
      • 2018-07-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多