\n"; } public function start_el(&$board_games_output, $page, $board_games_depth = 0, $board_games_args = array(), $current_page = 0) { if (isset($board_games_args['item_spacing']) && 'preserve' === $board_games_args['item_spacing']) { $t = "\t"; $n = "\n"; } else { $t = ''; $n = ''; } if ($board_games_depth) { $board_games_indent = str_repeat($t, $board_games_depth); } else { $board_games_indent = ''; } $board_games_css_class = array('page_item', 'page-item-' . $page->ID); if (isset($board_games_args['pages_with_children'][$page->ID])) { $board_games_css_class[] = 'page_item_has_children'; } if (!empty($current_page)) { $_current_page = get_post($current_page); if ($_current_page && in_array($page->ID, $_current_page->ancestors, true)) { $board_games_css_class[] = 'current_page_ancestor'; } if ($page->ID === $current_page) { $board_games_css_class[] = 'current_page_item'; } elseif ($_current_page && $page->ID === $_current_page->post_parent) { $board_games_css_class[] = 'current_page_parent'; } } elseif (get_option('page_for_posts') === $page->ID) { $board_games_css_class[] = 'current_page_parent'; } /** This filter is documented in wp-includes/class-walker-page.php */ $board_games_css_classes = implode(' ', apply_filters('page_css_class', $board_games_css_class, $page, $board_games_depth, $board_games_args, $current_page)); $board_games_css_classes = $board_games_css_classes ? ' class="' . esc_attr($board_games_css_classes) . '"' : ''; if ('' === $page->post_title) { /* translators: %d: ID of a post. */ $page->post_title = sprintf(__('#%d (no title)', 'board-games'), $page->ID); } $board_games_args['link_before'] = empty($board_games_args['link_before']) ? '' : $board_games_args['link_before']; $board_games_args['link_after'] = empty($board_games_args['link_after']) ? '' : $board_games_args['link_after']; $board_games_atts = array(); $board_games_atts['href'] = get_permalink($page->ID); $board_games_atts['aria-current'] = ($page->ID === $current_page) ? 'page' : ''; /** This filter is documented in wp-includes/class-walker-page.php */ $board_games_atts = apply_filters('page_menu_link_attributes', $board_games_atts, $page, $board_games_depth, $board_games_args, $current_page); $board_games_attributes = ''; foreach ($board_games_atts as $attr => $board_games_value) { if (!empty($board_games_value)) { $board_games_value = ('href' === $attr) ? esc_url($board_games_value) : esc_attr($board_games_value); $board_games_attributes .= ' ' . $attr . '="' . $board_games_value . '"'; } } $board_games_args['list_item_before'] = ''; $board_games_args['list_item_after'] = ''; $board_games_args['icon_rennder'] = ''; // Wrap the link in a div and append a sub menu toggle. if (isset($board_games_args['show_toggles']) && true === $board_games_args['show_toggles']) { // Wrap the menu item link contents in a div, used for positioning. $board_games_args['list_item_after'] = ''; } // Add icons to menu items with children. if (isset($board_games_args['show_sub_menu_icons']) && true === $board_games_args['show_sub_menu_icons']) { if (isset($board_games_args['pages_with_children'][$page->ID])) { $board_games_args['icon_rennder'] = ''; } } // Add icons to menu items with children. if (isset($board_games_args['show_toggles']) && true === $board_games_args['show_toggles']) { if (isset($board_games_args['pages_with_children'][$page->ID])) { $toggle_target_string = '.page_item.page-item-' . $page->ID . ' > .sub-menu'; $board_games_args['list_item_after'] = ''; } } if (isset($board_games_args['show_toggles']) && true === $board_games_args['show_toggles']) { $board_games_output .= $board_games_indent . sprintf( '%s%s%s%s%s%s%s', $board_games_css_classes, '' ); }else{ $board_games_output .= $board_games_indent . sprintf( '%s%s%s%s%s%s', $board_games_css_classes, $board_games_args['list_item_before'], $board_games_attributes, $board_games_args['link_before'], /** This filter is documented in wp-includes/post-template.php */ apply_filters('the_title', $page->post_title, $page->ID), $board_games_args['icon_rennder'], $board_games_args['link_after'], $board_games_args['list_item_after'] ); } if (!empty($board_games_args['show_date'])) { if ('modified' === $board_games_args['show_date']) { $board_games_time = $page->post_modified; } else { $board_games_time = $page->post_date; } $board_games_date_format = empty($board_games_args['date_format']) ? '' : $board_games_args['date_format']; $board_games_output .= ' ' . mysql2date($board_games_date_format, $board_games_time); } } } }