by Takayuki Miyauchi on WordPress.org
You can use shortcode for display child pages from the page.
This plugin maintained on GitHub.
[child_pages] display child pages.Display child pages of the current page.
[child_pages width=”33%”]
Filter for query_posts() query.
'publish',
'post_type' => 'page',
'post_parent' => $id_for_the_post,
'orderby' => 'menu_order',
'order' => 'ASC',
'nopaging' => true,
);
add_filters('child-pages-shortcode-query', "my_query");
function my_query($args) {
//
// some code here
//
return $args;
}
?>
Filter for default template.
%post_thumb%Filter for stylesheet URI.
Default Template
%post_title%
%post_excerpt%
Template valiables
This plug-in is not guaranteed though the user of WordPress can freely use this plug-in free of charge regardless of the purpose.
The author must acknowledge the thing that the operation guarantee and the support in this plug-in use are not done at all beforehand.