Sunday, March 31, 2019

To count total no of post in category

<?php

                $args = array(

                    'type'                     => 'trek',

                    'child_of'                 => 0,

                    'parent'                   => '',

                    'orderby'                  => 'name',

                    'order'                    => 'ASC',

                    'hide_empty'               => 1,

                    'hierarchical'             => 1,

                    'exclude'                  => '',

                    'include'                  => '2',  //this is category id

                    'number'                   => '',

                    'taxonomy'                 => 'destination',

                    'pad_counts'               => false );

                $categories = get_categories($args);

              foreach ($categories as $category) {

              $url = get_term_link($category);

              $postsInCat = get_term($category);

              $postsInCat = $postsInCat->count;

               $cat = $category
                     
             
               ?><?php } ?>
             <?php echo $postsInCat; ?>

No comments:

Featured Post

Make money online

https://www.wpbeginner.com/beginners-guide/make-money-online/?fbclid=IwAR0_9_5aHmbB4rDisaPevdnO4uAgo0N9heHgPu1TjerjurE5ilD2NyzeB2A

Popular Posts