* @version 1.1.0 * * @package WordPress * @subpackage Administration */ function wp_custom_navigation_get_menu_items( $menu_objects, $key = 'ID' ) { $menu_items = array(); if ( !empty( $menu_objects ) && !empty( $key ) ) { $args = array( 'orderby' => 'menu_order', 'post_type' => 'menu_item', 'post_status' => 'menu-category,menu-page,menu-custom' ); if ( count( $menu_objects ) > 1 ) $args['include'] = implode( ',', $menu_objects ); else $args['include'] = $menu_objects[0]; $posts = new WP_Query( $args ); if ( ! empty( $posts->posts ) ) { foreach( $posts->posts as $post ) { $menu_items[ $post->$key ] = $post; } } unset( $posts ); ksort( $menu_items ); } return $menu_items; } function wp_custom_navigation_setup($override = false) { $nav_version = '1.1.0'; //Custom Navigation Menu Setup //Check for Upgrades if (get_option('wp_settings_custom_nav_version') <> '') { $nav_version_in_db = get_option('wp_settings_custom_nav_version'); } else { $nav_version_in_db = '0'; } //Override for menu descriptions update_option('wp_settings_custom_nav_advanced_options','yes'); if(($nav_version_in_db <> $nav_version) || ($override)) update_option('wp_settings_custom_nav_version',$nav_version); $custom_menus = get_terms( 'menu', array( 'hide_empty' => false ) ); if ( !empty( $custom_menus ) ) { foreach( $custom_menus as $menu ) { $menu_objects = get_objects_in_term( $menu->term_id, 'menu' ); if ( !empty( $menu_objects ) ) { foreach( $menu_objects as $item ) wp_delete_post( $item ); } wp_delete_term( $menu->term_id, 'menu' ); } } } /*-----------------------------------------------------------------------------------*/ /* Custom Navigation Functions */ /* wp_custom_navigation_output() displays the menu in the back/frontend /* wp_custom_navigation_sub_items() is a recursive sub menu item function /* wp_custom_nav_get_pages() /* wp_custom_nav_get_categories() /* wp_custom_navigation_default_sub_items() is a recursive sub menu item function /*-----------------------------------------------------------------------------------*/ /*-----------------------------------------------------------------------------------*/ /* Main Output Function /* args list /* type - frontend or backend /* name - name of your menu /* id - id of menu in db /* desc - 1 = show descriptions, 2 = dont show descriptions /* before_title - html before title is outputted in tag /* after_title - html after title is outputted in tag /*-----------------------------------------------------------------------------------*/ function wp_custom_navigation_output($args = array()) { //DEFAULT ARGS $type = 'frontend'; $name = 'Menu 1'; $id = 0; $desc = 2; $before_title = ''; $after_title = ''; if (isset($args)) { if ( !is_array($args) ) parse_str( $args, $args ); extract($args); } $menu_objects = get_objects_in_term( $id, 'menu' ); $menu_items = wp_custom_navigation_get_menu_items( $menu_objects, 'menu_order' ); //Override for menu descriptions $advanced_option_descriptions = get_option('wp_settings_custom_nav_advanced_options'); if ($advanced_option_descriptions == 'no') { $desc = 2; } $queried_id = 0; global $wp_query; if ( is_page() ) $queried_id = $wp_query->post->ID; elseif ( is_category() ) $queried_id = $wp_query->query_vars['cat']; //DISPLAY Loop foreach ($menu_items as $menu_item) { //PREPARE Menu Data //Page Menu Item switch ( $menu_item->post_status ) { case 'menu-page': if ($menu_item->guid == '') $link = get_permalink( $menu_item->post_parent ); else $link = $menu_item->guid; if ( $menu_item->post_title == '' ) $title = htmlentities( get_the_title( $menu_item->post_parent ) ); else $title = htmlentities( $menu_item->post_title ); if ( $menu_item->post_content == '' ) $description = htmlentities( get_post_meta( $menu_item->ID, 'page-description', true ) ); else $description = htmlentities( $menu_item->post_content ); $target = ''; break; //Category Menu Item case 'menu-category': if ($menu_item->guid == '') $link = get_category_link( $menu_item->post_parent ); else $link = $menu_item->guid; if ( $menu_item->post_title == '' ) { $title_raw = get_categories( 'include='.$menu_item->post_parent ); $title = htmlentities($title_raw[0]->cat_name); } else { $title = htmlentities( $menu_item->post_title ); } if ( $menu_item->post_content == '' ) $description = htmlentities( strip_tags( category_description( $menu_item->post_parent ) ) ); else $description = htmlentities( $menu_item->post_content ); $target = ''; break; default: //Custom Menu Item $link = $menu_item->guid; $title = htmlentities( $menu_item->post_title ); $description = htmlentities( $menu_item->post_content ); $target = 'target="_blank"'; break; } /* @todo: update to use tax/post data //SET anchor title if (isset($wp_custom_nav_menu_items->custom_anchor_title)) { $anchor_title = htmlentities($wp_custom_nav_menu_items->custom_anchor_title); } else { $anchor_title = $title; } if ($queried_id == $wp_custom_nav_menu_items->post_id) { $li_class = 'class="current_page_item"'; } else { $li_class = ''; } if (isset($wp_custom_nav_menu_items->new_window)) { if ($wp_custom_nav_menu_items->new_window > 0) { $target = 'target="_blank"'; } else { $target = ''; } } */ //List Items ?> get_results("SELECT id,post_id,parent_id,position,custom_title,custom_link,custom_description,menu_icon,link_type,custom_anchor_title,new_window FROM ".$table_name." WHERE parent_id = '".$post_id."' AND menu_id='".$menu_id."' ORDER BY position ASC"); if (empty($wp_custom_nav_menu)) { } else { ?> 0, 'sort_order' => 'ASC', 'sort_column' => 'post_title', 'hierarchical' => 1, 'exclude' => '', 'include' => '', 'meta_key' => '', 'meta_value' => '', 'authors' => '', 'parent' => -1, 'exclude_tree' => '', 'number' => '', 'offset' => 0 ); //GET all pages $pages_array = get_pages($pages_args); $intCounter = $counter; $parentli = $intCounter; if ($pages_array) { //DISPLAY Loop foreach ($pages_array as $post) { if ($post->post_parent == 0) { //Custom Menu if ($type == 'menu') { $description = get_post_meta($post->ID, 'page-description', true); ?>
  • post_title); $post_url = get_permalink($post->ID); $post_id = $post->ID; $post_parent_id = $post->post_parent; $description = htmlentities(get_post_meta($post_id, 'page-description', true)); ?> post_title; ?> Add to Custom Menu
    ID; ?>
  • 'post', 'child_of' => 0, 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => false, 'include_last_update_time' => false, 'hierarchical' => 1, 'exclude' => '', 'include' => '', 'number' => '', 'pad_counts' => false ); $intCounter = $counter; //GET all categories $categories_array = get_categories($category_args); if ($categories_array) { //DISPLAY Loop foreach ($categories_array as $cat_item) { if ($cat_item->parent == 0) { //Custom Menu if ($type == 'menu') { ?>
  • cat_name); $post_url = get_category_link($cat_item->cat_ID); $post_id = $cat_item->cat_ID; $post_parent_id = $cat_item->parent; $description = htmlentities(strip_tags($cat_item->description)); ?> cat_name; ?> Add to Custom Menu
    cat_ID; ?> cat_ID, $intCounter, $parentli, 'categories','default'); ?>
  • $childof, 'hide_empty' => false, 'parent' => $childof); } //Sidebar Menu elseif ($output_type == 'default') { $sub_args = array( 'child_of' => $childof, 'hide_empty' => false, 'parent' => $childof); } else { } //Get Sub Category Items if ($type == 'categories') { $sub_array = get_categories($sub_args); } //Get Sub Page Items elseif ($type == 'pages') { $sub_array = get_pages($sub_args); } if ($sub_array) { ?> $childof, 'hide_empty' => false, 'parent' => $childof); $sub_array = get_categories($sub_args); } //Get Sub Page Items elseif ($type == 'pages') { $sub_args = array( 'child_of' => $childof, 'parent' => $childof); $sub_array = get_pages($sub_args); } else { } if ($sub_array) { //DISPLAY Loop foreach ($sub_array as $sub_item) { if (isset($sub_item->parent)) { $sub_item_parent = $sub_item->parent; } elseif (isset($sub_item->post_parent)) { $sub_item_parent = $sub_item->post_parent; } else { } //Is child if ($sub_item_parent == $childof) { //Prepare Menu Data //Category Menu Item if ($type == 'categories') { $link = get_category_link($sub_item->cat_ID); $title = htmlentities($sub_item->cat_name); $parent_id = $sub_item->category_parent; $itemid = $sub_item->cat_ID; $linktype = 'category'; $appendtype= 'Category'; } //Page Menu Item elseif ($type == 'pages') { $link = get_permalink($sub_item->ID); $title = htmlentities($sub_item->post_title); $parent_id = $sub_item->post_parent; $linktype = 'page'; $itemid = $sub_item->ID; $appendtype= 'Page'; } //Custom Menu Item else { $title = ''; $linktype = 'custom'; $appendtype= 'Custom'; } //CHECK for existing parent records //echo $parent_id; $wp_result = $wpdb->get_results("SELECT id FROM ".$table_name." WHERE post_id='".$parent_id."' AND link_type='".$linktype."' AND menu_id='".$menu_id."'"); if ($wp_result > 0 && isset($wp_result[0]->id)) { $parent_id = $wp_result[0]->id; } else { //$parent_id = 0; } //INSERT item $insert = "INSERT INTO ".$table_name." (position,post_id,parent_id,custom_title,custom_link,custom_description,menu_icon,link_type,menu_id,custom_anchor_title) "."VALUES ('".$counter."','".$itemid."','".$parent_id."','".$title."','".$link."','','','".$linktype."','".$menu_id."','".$title."')"; $results = $wpdb->query( $insert ); $counter++; $counter = get_children_menu_elements($itemid, $counter, $parent_id, $type, $menu_id, $table_name); } //Do nothing else { } } } return $counter; } ?>