WordPress and buddypress programming

How to Show Empty Categories in WordPress

Viewing 0 reply threads
  • Author
    Posts
    • #4337
      Michael Mc
      Keymaster
      @mkmcst
      function wpb_list_categories() { 
       
      // define category list parameneters
      $args = array (
      'echo'          => false,
      'title_li'      => '',
      'hide_empty'    => 0
      ); 
       
      // get categories list
      $display_cats = wp_list_categories($args); 
       
      //display custom categories list
      return $display_cats;
      }
       
      // create shortcode
      add_shortcode('custom_categories_list','wpb_list_categories');
Viewing 0 reply threads
  • You must be logged in to reply to this topic.