最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

categories - In WordPress, how do I get the number of posts next to single_cat_title(''); in the category.php fi

programmeradmin0浏览0评论

In WordPress, how do I get the number of posts next to <?php single_cat_title(''); ?> in the category.php file?

<h1><?php single_cat_title(''); ?> (<?php ????code to count number of posts in the category shown?>?? ?>)</h1>

In WordPress, how do I get the number of posts next to <?php single_cat_title(''); ?> in the category.php file?

<h1><?php single_cat_title(''); ?> (<?php ????code to count number of posts in the category shown?>?? ?>)</h1>
Share Improve this question asked Feb 18, 2020 at 14:49 Glen Charles RowellGlen Charles Rowell 516 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

I figured out how to do it.

This code shows the number of posts on a page after clicking on a category in WordPress. Even if the post has lots of categories.

<?php $category = get_queried_object(); echo $category->count; ?>

I used this code as the code was in the category.php file and not part of the regular loop.

I hope this code helps anyone else if they are having the same type of problem.

You can use the function get_category() to get the category object and then just simply echo the $count property value.

$cat_count = get_category( 'ID OR ROW OBJECT' );
echo $cat_count->count;

If you also want to get the category object or ID before that then use this code:

$categories = get_the_category();
$category_id = $categories[0]->cat_ID;

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论