diff --git a/functions.php b/functions.php index 8556fed..ef3d690 100644 --- a/functions.php +++ b/functions.php @@ -30,9 +30,22 @@ function huskypress_page_menu_args( $args ) { } add_filter( 'wp_page_menu_args', 'huskypress_page_menu_args' ); - - - +if(!function_exists('is_parent_private')){ + function is_parent_private($id){ + $page = get_post($id); + if($page->post_parent > 0){ + $parent = get_post($page->post_parent); + $private = get_post_meta($parent->ID, 'uc-private', true); + if($private == 'admins' || $private == 'users' || $private == 'list'){ + return $parent->ID; + } + else return is_parent_private($parent->ID); + } + else{ + return false; + } + } +} /* Disabled until theme supports these types... (AB June 26, 2013) @@ -426,6 +439,20 @@ function search_menu_item($items, $args){ if(!class_exists('Bootstrap_Nav_Walker')) { class Bootstrap_Nav_Walker extends Walker_Nav_Menu { /*This was taken from 320press WP-Bootstrap theme. No licensing restriction given, and it said it was free. */ + /* Skip private pages + */ + function skip( $item ) { + $parent = is_parent_private($item->ID); + if($parent !== false) $page = $parent; + else $page = $item->ID; + $private = get_post_meta($page, 'uc-private', true); + if($private == 'admins' || $private == 'users' || $private == 'list'){ + return true; + } + else{ + return false; + } + } /* Start of the