Using the filter to change the order of the pages
-
I tried using your filter hook example from the description page here so I could change the orderby to the post title, but it just causes the site to go white. I put that code into my functions.php theme file like so:
add_filters('child-pages-shortcode-query', "my_query"); function my_query($args) { $args = array( 'post_status' => 'publish', 'post_type' => 'page', 'post_parent' => $id_for_the_post, 'orderby' => 'post_title', 'order' => 'ASC', 'nopaging' => true, ); return $args; }
I must be adding it wrong, could you help with this please? I edited it in the plugin temporarily just so I could show what the list looks like on a page, but I certainly don’t want to leave it that way and have it overwrite on upgrades.
Thanks for your help, Heather
- The topic ‘Using the filter to change the order of the pages’ is closed to new replies.