如何在WordPress中列出所有类别的子弹和类别名称?

时间:2019-01-18 22:44:33

标签: wordpress

我知道我可以使用 wp_list_categories 列出所有类别的名称,但是如何同时列出所有弹头?

这是列出所有类别的代码。

   <?php 
      if ( current_user_can( 'administrator' ) ) {
      wp_list_categories( array(
     'orderby' => 'name',
     'title_li' => '',
     ) );
     }
   ?>

0 个答案:

没有答案