Snažím se vytvořit Menu, které zobrazuje maximálně 5 položek. Pokud existuje více položek, měli byste je zabalit do jiného prvku <ul>
Element a vytvořit tak rozevírací seznam.
5 položek nebo méně:
6 Položky nebo více
Vím, že tento druh funkcí by mohl být snadno vytvořen s chodcem, který počítá položky menu a zábaly, pokud existuje více než 5 zbytků do samostatného <ul>
. Ale já nevím, jak vytvořit tento chodec.
Kód, který v tuto chvíli zobrazuje nabídku, je následující:
<?php wp_nav_menu( array( 'theme_location' => 'navigation', 'fallback_cb' => 'custom_menu', 'walker' =>new Custom_Walker_Nav_Menu ) ); ?>
Všiml jsem si, že pokud menu není definováno uživatelem a používá nouzovou funkci, chodec nemá žádný vliv. Potřebuji, abych pracoval v obou případech.
Metoda start_el()
používá vlastní Walker a má přístup k parametru $depth
param: když je 0
elemnt je top, a my můžeme použít tuto informaci k udržení interního čítače.
Když čítač dosáhne limitu, můžeme použít DOMDocument
, abychom získali z plného HTML výstupu pouze poslední přidaný prvek, zabalili jej do podnabídky a přidali je znovu do HTML.
Když je počet prvků přesně číslo, které jsme požadovali + 1, např. vyžadovali jsme 5 prvků, které mají být viditelné a menu má 6, nemá smysl rozdělit menu, protože prvky budou v obou směrech. Kód byl upraven tak, aby byl adresován.
Zde je kód:
class SplitMenuWalker extends Walker_Nav_Menu {
private $split_at;
private $button;
private $count = 0;
private $wrappedOutput;
private $replaceTarget;
private $wrapped = false;
private $toSplit = false;
public function __construct($split_at = 5, $button = '<a href="#">…</a>') {
$this->split_at = $split_at;
$this->button = $button;
}
public function walk($elements, $max_depth) {
$args = array_slice(func_get_args(), 2);
$output = parent::walk($elements, $max_depth, reset($args));
return $this->toSplit ? $output.'</ul></li>' : $output;
}
public function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0 ) {
$this->count += $depth === 0 ? 1 : 0;
parent::start_el($output, $item, $depth, $args, $id);
if (($this->count === $this->split_at) && ! $this->wrapped) {
// split at number has been reached generate and store wrapped output
$this->wrapped = true;
$this->replaceTarget = $output;
$this->wrappedOutput = $this->wrappedOutput($output);
} elseif(($this->count === $this->split_at + 1) && ! $this->toSplit) {
// split at number has been exceeded, replace regular with wrapped output
$this->toSplit = true;
$output = str_replace($this->replaceTarget, $this->wrappedOutput, $output);
}
}
private function wrappedOutput($output) {
$dom = new DOMDocument;
$dom->loadHTML($output.'</li>');
$lis = $dom->getElementsByTagName('li');
$last = trim(substr($dom->saveHTML($lis->item($lis->length-1)), 0, -5));
// remove last li
$wrappedOutput = substr(trim($output), 0, -1 * strlen($last));
$classes = array(
'menu-item',
'menu-item-type-custom',
'menu-item-object-custom',
'menu-item-has-children',
'menu-item-split-wrapper'
);
// add wrap li element
$wrappedOutput .= '<li class="'.implode(' ', $classes).'">';
// add the "more" link
$wrappedOutput .= $this->button;
// add the last item wrapped in a submenu and return
return $wrappedOutput . '<ul class="sub-menu">'. $last;
}
}
Použití je velmi jednoduché:
// by default make visible 5 elements
wp_nav_menu(array('menu' => 'my_menu', 'walker' => new SplitMenuWalker()));
// let's make visible 2 elements
wp_nav_menu(array('menu' => 'another_menu', 'walker' => new SplitMenuWalker(2)));
// customize the link to click/over to see wrapped items
wp_nav_menu(array(
'menu' => 'another_menu',
'walker' => new SplitMenuWalker(5, '<a href="#">more...</a>')
));
Existuje dokonce i způsob, jak to s CSS umožnit. To má určitá omezení, ale stále jsem si myslel, že by to mohl být zajímavý přístup:
I když nejsem opravdu pomocí "Množstevních dotazů" kreativní využití :nth-child
a ~
jsem četl v nedávné Množstevní dotazy pro CSS byly to, co mě vedlo k tomuto řešení.
Tento přístup je v podstatě toto:
...
tečky pomocí before
pseudo-elementu.Zde je kód CSS pro výchozí označení nabídky WordPress. Komentoval jsem inline.
/* Optional: Center the navigation */
.main-navigation {
text-align: center;
}
.menu-main-menu-container {
display: inline-block;
}
/* Float menu items */
.nav-menu li {
float:left;
list-style-type: none;
}
/* Pull the 5th menu item to the left a bit so that there isn't too
much space between item 4 and ... */
.nav-menu li:nth-child(4) {
margin-right: -60px;
}
/* Create a pseudo element for ... and force line break afterwards
(Hint: Use a symbol font to improve styling) */
.nav-menu li:nth-child(5):before {
content: "...\A";
white-space: pre;
}
/* Give the first 4 items some padding and Push them in front of the submenu */
.nav-menu li:nth-child(-n+4) {
padding-right: 15px;
position: relative;
z-index: 1;
}
/* Float dropdown-items to the right. Hardcode width of dropdown. */
.nav-menu li:nth-child(n+5) {
float:right;
clear: right;
width: 150px;
}
/* Float Links in dropdown to the right and hide by default */
.nav-menu li:nth-child(n+5) a{
display: none;
float: right;
clear: right;
}
/* When hovering the menu, show all menu items from the 5th on */
.nav-menu:hover li:nth-child(n+5) a,
.nav-menu:hover li:nth-child(n+5) ~ li a{
display: inherit;
}
/* When hovering one of the first 4 items, hide all items after it
so we do not activate the dropdown on the first 4 items */
.nav-menu li:nth-child(-n+4):hover ~ li:nth-child(n+5) a{
display: none;
}
Také jsem vytvořil jsfiddle, abych to ukázal v akci: http://jsfiddle.net/jg6pLfd1/
Pokud máte nějaké další otázky, jak to funguje, prosím zanechte komentář, rád bych tento kód dále objasnil.
Můžete použít filtr wp_nav_menu_items
. Přijímá výstup nabídky a argumenty, které obsahují atributy nabídky, jako je například nabídka slug, kontejner atd.
add_filter('wp_nav_menu_items', 'wpse_180221_nav_menu_items', 20, 2);
function wpse_180221_nav_menu_items($items, $args) {
if ($args->menu != 'my-menu-slug') {
return $items;
}
// extract all <li></li> elements from menu output
preg_match_all('/<li[^>]*>.*?<\/li>/iU', $items, $matches);
// if menu has less the 5 items, just do nothing
if (! isset($matches[0][5])) {
return $items;
}
// add <ul> after 5th item (can be any number - can use e.g. site-wide variable)
$matches[0][5] = '<li class="menu-item menu-item-type-custom">…<ul>'
. $matches[0][5];
// $matches contain multidimensional array
// first (and only) item is found matches array
return implode('', $matches[0]) . '</ul></li>';
}
Mám pracovní funkci, ale nevíte, zda je to nejlepší řešení.
Použil jsem vlastní chodce:
class Custom_Walker_Nav_Menu extends Walker_Nav_Menu {
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = 'menu-item-' . $item->ID;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args, $depth );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
/**
* This counts the $menu_items and wraps if there are more then 5 items the
* remaining items into an extra <ul>
*/
global $menu_items;
$menu_items = substr_count($output,'<li');
if ($menu_items == 4) {
$output .= '<li class="tooltip"><span>...</span><ul class="tooltip-menu">';
}
$output .= $indent . '<li' . $id . $class_names .'>';
$atts = array();
$atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : '';
$atts['target'] = ! empty( $item->target ) ? $item->target : '';
$atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
Funkce, která zobrazuje aktuální nabídku, je následující:
<?php
wp_nav_menu( array( 'container' => false, 'theme_location' => 'navigation', 'fallback_cb' => 'custom_menu', 'walker' =>new Custom_Walker_Nav_Menu ) );
global $menu_items;
// This adds the closing </li> and </ul> if there are more then 4 items in the menu
if ($menu_items > 4) {
echo "</li></ul>";
}
?>
Prohlásil jsem globální proměnnou $ menu_items a použil jsem ji k zobrazení závěrečných <li>
a <ul>
- tagů. Jeho probabble možné udělat, že i uvnitř vlastní chodítko, ale nenašel jsem kde a jak.
Dva problémy: 1. Pokud je v menu pouze 5 položek, zařadí poslední položku do souboru, i když to není potřeba.