Attualmente sto utilizzando un walker personalizzato per personalizzare l'output di wp_nav_menu()
e sto provando ad aggiungere ulteriori informazioni ai <a>
tag.
Quello che voglio che assomigli all'output per ogni collegamento di menu è:
<a class="boxPAGEID" href="#">About Me Page</a>
Dov'è PAGEID
l'ID della pagina a cui mi sto collegando.
Il motivo è perché sto sviluppando un tema che apre il contenuto della pagina in lightbox, che sono attivati dalla classe nel tag.
Di seguito è riportato il codice del walker personalizzato nel mio functions.php
file (dopo il codice indicherò l'area in cui sto riscontrando problemi):
class description_walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
global $wp_query;
$pageid = $wp_query->post->ID;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
$class_names = ' class="'. esc_attr( $class_names ) . '"';
$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
$attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
$attributes .= ! empty( $item->url ) ? ' href="' . '#' .'"' : '';
$prepend = '<strong>';
$append = '</strong>';
$description = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';
if($depth != 0)
{
$description = $append = $prepend = "";
}
$item_output = $args->before;
$item_output .= '<a'. $attributes . 'class="box' . $pageid . '"' .'>';
$item_output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->title, $item->ID ).$append;
$item_output .= $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
if ($item->menu_order == 1) {
$classes[] = 'first';
}
}
}
Verso la fine ci sono un paio di righe che iniziano con $item_output
. La seconda riga è dove sto cercando di generare l'ID pagina:
$item_output .= '<a'. $attributes . 'class="box' . $pageid . '"' .'>';
Dove $pageid
è secondo:
global $wp_query;
$pageid = $wp_query->post->ID;
Questo mi dà un unico ID fisso per tutti i collegamenti generati.
In alternativa, invece di $pageid
provare ad usare $item->ID
, ma questo mi ha dato l'ID della voce di menu.
Eventuali suggerimenti?