我需要在父页面上显示子页面。我有一个代码,这是工作,但我需要设置一些代码,以只显示特定的网页喜欢只显示可见性公共不是所有的网页。
这是函数的代码。php在父页面上显示子页面。
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\');
短代码
[wpb_childpages]