Plugin info

Total downloads: 94,132
Active installs: 5,000
Total reviews: 20
Average rating: 4.6
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 6 language(s)
Contributors: 2
Last updated: 11/28/2017 (2955 days ago)
Added to WordPress: 10/11/2011 (14 years old)
Minimum WordPress version: 3.8
Tested up to WordPress version: 4.2.39
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2955 days ago • 20 reviews

24/100

Is Child Pages Shortcode abandoned?

Possibly abandoned (last update 2955 days ago).

Compatibility

Requires WordPress: 3.8
Tested up to: 4.2.39
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WP Shortcodes Plugin — Shortcodes Ultimate
Rating 4.9/5 (5,906 reviews)Active installs 500,000
MW WP Form
Rating 4.3/5 (22 reviews)Active installs 200,000
Rich Shortcodes for Google Reviews
Rating 4.9/5 (1,547 reviews)Active installs 100,000
Shortcoder — Create Shortcodes for Anything
Rating 4.9/5 (224 reviews)Active installs 100,000
Display Posts – Easy lists, grids, navigation, and more
Rating 4.8/5 (164 reviews)Active installs 90,000
Widget Shortcode
Rating 4.9/5 (67 reviews)Active installs 80,000

Description

You can use shortcode for display child pages from the page.

This plugin maintained on GitHub.

Some features

  • This plugin will add shortcode [child_pages] display child pages.
  • You can customize default HTML template on your plugin.
  • This plugin will be able to “excerpt” to the pages.

Example

Display child pages of the current page.
[child_pages width=”33%”]

Args

  • id – ID of page (Optional)
  • size – Post thumbnail size. e.g. ‘thumbnail’ or ‘large’
  • width – width of block for child pages.
  • disable_shortcode – Shortcode not work in the template if set true.
  • disable_excerpt_filters – filters not work for the excerpt if set true.

filter hooks example

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_thumb%

%post_title%

%post_excerpt%

Template valiables

  • %post_id% – ID of the Page
  • %width% – Width of block for single page
  • %post_url% – Page permalink
  • %post_thumb% – for Post thubmail
  • %post_title% – Page title
  • %post_excerpt% – Page excerpt

Support

  • http://wpist.me/wp/child-pages-shortcode/ (en)
  • http://firegoby.theta.ne.jp/wp/child-pages-shortcode (ja)

Contributors

Credits

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.

Contact

Installation

  • A plug-in installation screen is displayed on the WordPress admin panel.
  • It installs it in wp-content/plugins.
  • The plug-in is made effective.

Frequently Asked Questions

Installation Instructions

  • A plug-in installation screen is displayed on the WordPress admin panel.
  • It installs it in wp-content/plugins.
  • The plug-in is made effective.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.9.3

  • Tested on WordPress 4.2.

1.9.2

  • Tested on WordPress 4.1.

1.9.1

  • bug fix – js not found

1.9.0

  • bug fix – css syntax error

1.7.0

  • bug fix – missing wp_reset_postdata()

1.6.0

  • bug fix

1.3.0

  • setup_postdata() added.

1.2.0

  • bug fix

1.1.4

  • bug fix on non-responsive theme

1.1.3

  • Bug fix

1.1.2

  • Bug fix

1.0.1

  • Add filter hook “child-pages-shortcode-output”

0.9.0

  • Add filter hook “child-pages-shortcode-query”
  • Load stylesheet by wp_enqueue_style()

0.8.0

  • Add style “max-width:100%”.

0.4.0

  • add add_post_type_support("page", "excerpt");

0.3.0

  • Adapt to no-image.

0.1.0

  • The first release.