Viewing 1 replies (of 1 total)
  • Plugin Author Takayuki Miyauchi

    (@miyauchi)

    I am not tested, but it will work like below.

    add_filters('child-pages-shortcode-query', "my_query");
    function my_query($args) {
        $args['posts_per_page'] = 4;
        return $args;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How can I limit the number of child pages displayed?’ is closed to new replies.