如何创建shortcode参数以获取父页面ID的子页面

时间:2019-03-30 10:17:52

标签: wordpress function shortcode

我跟随this tutorial在wordpress中列出了当前父页面的子页面。我如何创建带参数的简码,例如[wpb_childpages id =” 1”],其中id =” 1”是父页面的id?我还尝试在列表顶部添加父级名称。你能帮忙吗?

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');

0 个答案:

没有答案