[code]
add_shortcode(’children’, 'child_pages_shortcode’);
function child_pages_shortcode() {
global $post;
return ’
- ’.wp_list_pages(’echo=0&depth=0&title_li=&child_of=’.$post->ID).’
’;
}
[/code]
[code]
add_shortcode(’children’, 'child_pages_shortcode’);
function child_pages_shortcode() {
global $post;
return ’
’;
}
[/code]