• I want to Show Post number when displaying specific Category .
    for example Post X of 13 Previous Next

    i have got the total number of Post within any category
    ` $post_cat = get_the_category( $post->ID );
    if($post_cat) {

    $post_cat_id = $post_cat[0]->term_id;
    $cat_posts = get_category($post_cat_id);
    $total_posts = $cat_posts->category_count;
    }`
    <p class=”post-number”> Picture <?php HERE is i am Not Getting ?> of <?php echo $total_posts ?>

  • The topic ‘Show Dynamic Post number in while displaying in Catogry’ is closed to new replies.