Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 5, 2013 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/4717277 to your computer and use it in GitHub Desktop.
Save billerickson/4717277 to your computer and use it in GitHub Desktop.
<?php
function be_always_parent_subpages( $args ) {
global $post;
$args['child_of'] = $post->ID;
$args['parent'] = $post->ID;
return $args;
}
add_filter( 'be_subpages_widget_args', 'be_always_parent_subpages' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment