admin管理员组文章数量:1296858
I am using the code bellow to display a list of Child Pages on a Parent Page. I want to order the displayed list by Alphabetical order. How can I achieve this?
function wpb_list_child_pages() {
global $post;
if ( is_page() && $post->post_parent )
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->post_parent . '&echo=0' );
else
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->ID . '&echo=0' );
if ( $childpages ) {
$string = '<ul>' . $childpages . '</ul>';
}
return $string;
}
add_shortcode('wpb_childpages', 'wpb_list_child_pages');
I am using the code bellow to display a list of Child Pages on a Parent Page. I want to order the displayed list by Alphabetical order. How can I achieve this?
function wpb_list_child_pages() {
global $post;
if ( is_page() && $post->post_parent )
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->post_parent . '&echo=0' );
else
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->ID . '&echo=0' );
if ( $childpages ) {
$string = '<ul>' . $childpages . '</ul>';
}
return $string;
}
add_shortcode('wpb_childpages', 'wpb_list_child_pages');
Share
Improve this question
edited Apr 16, 2021 at 16:06
Antti Koskinen
5,9838 gold badges15 silver badges26 bronze badges
asked Apr 14, 2021 at 13:41
SkinzSkinz
1
1 Answer
Reset to default 0Take a look at the documentation of wp_list_pages()
. You can use the argument sort_column
to specify the ordering. Use sort_column=post_title
to list the pages alphabetically.
So your query for the child pages will become something like this:
$childpages = wp_list_pages( 'sort_column=post_title&title_li=&child_of=' . $post->post_parent . '&echo=0' );
本文标签: phpOrder by title Child Pages displayed in a Parent Page
版权声明:本文标题:php - Order by title Child Pages displayed in a Parent Page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741613107a2388372.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论