Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 15, 2011 17:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1481985 to your computer and use it in GitHub Desktop.
Save billerickson/1481985 to your computer and use it in GitHub Desktop.
Exclude Pages from Genesis Subpages as Secondary Menu plugin
<?php
/**
* Exclude Pages from Genesis Subpages as Secondary Menu plugin
* Use page IDs
*
* @param array $args
* @return array
*/
function be_exclude_pages_from_submenu( $args ) {
$args['excludde'] = '3,4,7';
return $args;
}
add_filter( 'be_genesis_subpages_args', 'be_exclude_pages_from_submenu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment