Created
December 15, 2011 17:31
-
-
Save billerickson/1481985 to your computer and use it in GitHub Desktop.
Exclude Pages from Genesis Subpages as Secondary Menu plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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