插件中的WordPress类别

时间:2014-08-14 作者:wharfdale

我已经安装了Owl Carousel插件,在其中我可以创建一些类别。

现在我想在网站上显示这些猫头鹰旋转木马类别,而不是常规类别。你现在在网站上看到的是常规类别,如“未分类”,它是从wp admin的POSTS区域创建的。

我尝试使用此选项,但仍然显示了错误的类别列表:

<?php wp_list_categories(
          $args = array(
          \'post_type\' => \'owl-carousel\'
         )
 ); ?> 
enter image description here
常规类别页面-enter image description here

猫头鹰旋转木马类别页面enter image description here

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

我找不到任何关于post_type 在里面wp_list_categories()

您应该使用taxonomy 相反

wp_list_categories(
      $args = array(
          \'taxonomy\' => \'Carousel\'  //Carousel is the taxonomy name your plugin use
     )
);

结束

相关推荐

使用GET_CATEGORIES时突出显示当前类别

我成功地使用了helgatheviking在这篇文章中的回答:Show children of top level category only 请参见下面的代码:// get the category object for the current category $thisCat = get_category( get_query_var( \'cat\' ) ); // if not top-level, track it up the chain to find its