<?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' ); |
This file contains 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