开发者

Display Wordpress Category

开发者 https://www.devze.com 2023-01-02 15:23 出处:网络
I want to display only the those parent category name and with their child category.. Example category

I want to display only the those parent category name and with their child category..

Example category AAAAA,BBBB,CCCCC,DDDDD Parent category AAAAA having child category a,b,c Parent category BBBB having child category x,y,z

Now I wan开发者_StackOverflow社区t to display only (Result required)

AAAAA    
    a,b,c 
BBBB    
    x,y,z

Please help me...


If CCCCC's id is 17 and DDDDD id is 38, then the following example would work.

   <ul>
      <?php wp_list_pages('exclude=17,38' ); ?>
    </ul>
0

精彩评论

暂无评论...
验证码 换一张
取 消