I would like to make a few of the pages in my blog be hidden and not displayed in the page navigation in Hybrid News.
How can I do this?
I would like to make a few of the pages in my blog be hidden and not displayed in the page navigation in Hybrid News.
How can I do this?
From:
http://themehybrid.com/themes/hybrid/navigation
Something like this:
<?php
add_filter( 'wp_page_menu_args', 'custom_page_nav' );
function custom_page_nav($args) {
$args['exclude'] = '4,5,6';
return $args;
}
?>
where 4,5,6 are the IDs of the pages you want excluded
Thank you, Kyle!
It works perfectly!
For anyone looking for page ID's this post might help - http://www.techtrot.com/wordpress-page-id/
You must log in to post.