如何在所有类别页面中添加侧边栏

时间:2013-04-04 作者:sindhu

我创建了自定义帖子类型。我创建了一个名为product categories的类别。我在侧边栏中列出了所有类别。php。如何在列出所有类别的所有类别页面中显示侧栏。侧栏。php代码是,

“name”、“order”=>“ASC”、“hide\\u empty”=>0、“使用\\u desc\\u表示\\u title”=>1、“child\\u of”=>21、“hierarchy”=>1、“number”=>null、“echo”=>1、“taxonomy”=>“product categories”、“walker”=>null、“title\\u li”=>“”);?>

    我想在所有类别页面中显示此代码。请引导我

    2 个回复
    最合适的回答,由SO网友:suresh 整理而成

    根据您的自定义帖子类型,以下代码将适用于

    在侧栏中添加以下代码。php显示自定义帖子类型类别

    <?php
     //list terms in a given taxonomy using wp_list_categories  (also useful as a widget)
      $orderby = \'name\';
      $show_count = 0; // 1 for yes, 0 for no
       $pad_counts = 0; // 1 for yes, 0 for no
       $hierarchical = 1; // 1 for yes, 0 for no
      $taxonomy = \'genre\';
      $title = \'\';
    
      $args = array(
        \'orderby\' => $orderby,
        \'show_count\' => $show_count,
        \'pad_counts\' => $pad_counts,
        \'hierarchical\' => $hierarchical,
        \'taxonomy\' => $taxonomy,
         \'title_li\' => $title
         );
     ?>
      <ul>
     <?php
       wp_list_categories($args);
     ?>
     </ul>
    

    SO网友:dipali

    您可以使用

    if(is_category()){
    // code stuff
    }
    
    当显示任何类别存档页面时,将执行此函数。

    结束

    相关推荐

    categories on attachment page

    我正在使用此功能在图像附件页上显示指定给具有图库的帖子的类别。<p>CATEGORY: <?php the_category(\', \'); ?></p> 问题是此函数不返回任何内容。我也用这种方式显示类别,但没有成功: <?php $categories = get_the_category(); $separator = \', \'; $output = \'\';