menu_item_loop_markup = wp_parse_args( $menu_item_loop_markup, $instance->default_menu_item_loop_markup ); } // Output return $instance; } // /init /** * 10) Admin */ /** * Add menu title rows to the list table * * @since 2.0 * @version 2.0 * * @param object $post */ public function show_menu_titles_in_menu_item_list( $post ) { // Helper variables global $wp_list_table; static $last_term_id = false; $term = $this->get_menu_item_menu_leaf( $post->ID ); if ( false !== $last_term_id && $last_term_id === $term->term_id ) { return; } $last_term_id = $term->term_id; $parents = array(); $current_term = $term; while ( $current_term->parent ) { $current_term = get_term( $current_term->parent, self::MENU_TAX ); $parents[] = esc_html( sanitize_term_field( 'name', $current_term->name, $current_term->term_id, self::MENU_TAX, 'display' ) ); } krsort( $parents ); $non_order_column_count = $wp_list_table->get_column_count() - 1; $screen = get_current_screen(); $url = admin_url( $screen->parent_file ); $up_url = add_query_arg( array( 'action' => 'move-menu-up', 'term_id' => (int) $term->term_id, ), wp_nonce_url( $url, 'nova_move_menu_up_' . $term->term_id ) ); $down_url = add_query_arg( array( 'action' => 'move-menu-down', 'term_id' => (int) $term->term_id, ), wp_nonce_url( $url, 'nova_move_menu_down_' . $term->term_id ) ); // Output ?>

name, $term->term_id, self::MENU_TAX, 'display' ) ); edit_term_link( esc_html__( 'edit', 'auberge' ), '', '', $term ); } else { esc_html_e( 'Uncategorized' , 'auberge' ); } ?>


'ids' ) ); // Processing foreach ( $term_ids as $term_id ) { // Display top level parent only if enabled $parents = (array) get_ancestors( $term_id, self::MENU_TAX ); if ( apply_filters( 'jetpack_food_section_parent_only', false ) && ! empty( $parents ) ) { $term_id = end( $parents ); break; } // Or check out children $children = (array) get_term_children( $term_id, self::MENU_TAX ); if ( empty( $children ) ) { break; } } // /foreach // Output if ( ! isset( $term_id ) ) { return false; } return get_term( $term_id, self::MENU_TAX ); } // /get_menu_item_menu_leaf /** * 30) Outputs */ /** * Loop markup setup * * @since 2.0 * @version 2.0 * * @param string $field */ function get_menu_item_loop_markup( $field = null ) { // Helper variables $markup = $this->menu_item_loop_markup; // Processing if ( is_front_page() ) { $markup['menu_title_tag'] = str_replace( array( 'h1', 'h2', ), array( 'h2', 'h3', ), $markup['menu_title_tag'] ); } // Output return $markup; } // /get_menu_item_loop_markup /** * Outputs the Menu Group Header * * Allowing HTML tags in taxonomy description. * * @since 2.0 * @version 2.0 */ public function menu_item_loop_header() { // Output $this->menu_item_loop_open_element( 'menu_header' ); $this->menu_item_loop_open_element( 'menu_title' ); if ( apply_filters( 'jetpack_food_section_archive_link', true ) ) { echo ''; } echo esc_html( $this->menu_item_loop_current_term->name ); if ( apply_filters( 'jetpack_food_section_archive_link', true ) ) { echo ''; } $this->menu_item_loop_close_element( 'menu_title' ); if ( $this->menu_item_loop_current_term->description ) { $this->menu_item_loop_open_element( 'menu_description' ); echo wp_kses_post( $this->menu_item_loop_current_term->description ); $this->menu_item_loop_close_element( 'menu_description' ); } $this->menu_item_loop_close_element( 'menu_header' ); } // /menu_item_loop_header /** * Outputs a Menu Item Markup element opening tag * * @since 2.0 * @version 2.0 * * @param string $field - Menu Item Markup settings field */ public function menu_item_loop_open_element( $field ) { // Helper variables $id = ''; $markup = $this->get_menu_item_loop_markup(); // Processing if ( 'menu_header' == $field && $this->menu_item_loop_current_term->name ) { $id = ' id="' . sanitize_title( $this->menu_item_loop_current_term->name . '-' . rand( 10, 99 ) ) . '"'; } // Output echo '<' . tag_escape( $markup["{$field}_tag"] ) . $this->menu_item_loop_class( $markup["{$field}_class"] ) . $id . ">\n"; } // /menu_item_loop_open_element } // /WM_Nova_Restaurant add_action( 'init', array( 'WM_Nova_Restaurant', 'init' ) );