把这个放在你的主题函数中。php,它将添加短代码[child_pages]
:
function wpsc_child_pages($atts){
global $wp_query;
$html = \'\';
if( empty($wp_query->post->post_parent) ) {
$parent = $wp_query->post->ID;
} else {
$parent = $wp_query->post->post_parent;
}
$pages = wp_list_pages("title_li=&child_of=$parent&echo=0");
if( $pages ){
$html .= "<div><ul>$pages</ul></div>";
}
return $html;
}
add_shortcode(\'child_pages\', \'wpsc_child_pages\');
如果要传递函数变量(例如。
[child_pages parent=3]
) 您可以使用传递的
$atts
论点