show sub-subpage on wordpress homepage

前端 未结 1 1306
生来不讨喜
生来不讨喜 2021-01-16 19:23

Let\'s say we have the following menu structure:

menu #1
menu #2
menu #3
- submenu #1
-- subsubmenu #1
-- subsubmenu #2
-- subsub

相关标签:
1条回答
  • 2021-01-16 20:10

    You can use the order by menu_order parameter for your query, and having a descending order to sort it out.

    Note: you must use the menu_order attribute under the Page Attribute Box, at the right of the edit screen

    Rewrite your query as

    <?php query_posts('post_parent=12&posts_per_page=2&orderby=menu_order&order=DESC'); ?>
    

    See: http://codex.wordpress.org/Function_Reference/query_posts#Order_.26_Orderby_Parameters

    0 讨论(0)
提交回复
热议问题