• Hey everyone,

    I am currently modifying the category.php of my blog and want to have a small text stating how many posts are already in that category like

    There are currently X entries in the YZ category.

    What’s even more trickier is that I want to have the word “entries” replaced with a certain term depending if it’s in a certain category, so when your are on the celebrities category or one of their subcategories (like Brad Pitt), it would go like that:

    There are currently X looks in the Brad Pitt category.

    or when a visitor is in the products category or one of its subcats, it would be changed into:

    “There are currently X items in the Nike category.”

    Does anyone how I can do that? I know the second part is probably a bit more difficult, so I’d also be grateful if someone knows the answer to my first question.

    Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Have a check with this plugin:

    http://wordpress.org/extend/plugins/post-count/

    It should help you to resolve the requirement….however you can use query post to indentify the number f post snd then display it..But it requires hard coding

    Thanks,

    Shane G.

    topneurotisk

    (@topneurotisk)

    Hmm, I couldn’t get this to work.
    The post-count plugin returns the total post count instead of the count og posts in the current category.
    I don’t have any problems retrieving the post count for a specific category knowing its ID… however when i am in the category.php I can’t figure out the ID of the current category…? How to do?

    Hi Topneurotisk,

    I think I found a solution for you while searching for the same answer. I used some tips from the codex (http://codex.wordpress.org/Function_Reference/get_the_category) and from this site : http://jhherren.wordpress.com/2008/08/13/getting-the-number-of-posts-per-category-in-wordpress/ .

    This can be used outside the Loop. I use it as a way to display the number of post in the category in archive.php.

    <!-- Get number of posts -->                     
    
                    <?php foreach((get_the_category()) as $category) {
    
    					if ($category->count = 1){
    
    					//if there is only one post in the category
    
    					echo $category->category_count, " post in";
    
    					}else if ($category->count > 1){à
    
    					//if there is more than one post in this category
    
    					echo $category->category_count, " posts in";
    
    					}else{
    
    					//if there is no post in this category
    
    					echo "there is no post in";
    
    					}
    				} ?>
    
                    <!-- Show Category name -->
    
                    <?php single_cat_title(); ?>

    I realized I slippe an “à” in the code, so here is the good version :

    <!-- Get number of posts -->                     
    
                    <?php foreach((get_the_category()) as $category) {
    
    					if ($category->count = 1){
    
    					//if there is only one post in the category
    
    					echo $category->category_count, " post in";
    
    					}else if ($category->count > 1){à
    
    					//if there is more than one post in this category
    
    					echo $category->category_count, " posts in";
    
    					}else{
    
    					//if there is no post in this category
    
    					echo "there is no post in";
    
    					}
    				} ?>
    
                    <!-- Show Category name -->
    
                    <?php single_cat_title(); ?>

    Again, there was another mistake, it should have been “==” instead of “=”

    <!-- Get number of posts -->                     
    
                    <?php foreach((get_the_category()) as $category) {
    
    					if ($category->count == 1){
    
    					//if there is only one post in the category
    
    					echo $category->category_count, " propriété dans";
    
    					}else if ($category->count > 1){
    
    					//if there is more than one post in this category
    
    					echo $category->category_count, " propriétés dans";
    
    					}else{
    
    					//if there is no post in this category
    
    					echo "aucune propriété dans";
    
    					}
    				} ?>
    
                    <!-- Show Category name -->
    
                    <?php single_cat_title(); ?>
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post count for a specific category in category.php?’ is closed to new replies.