我正在尝试将每个菜单项的所有字符串长度相加,这样我就可以对整个导航设置一个字符限制,而不是每个项目的设置限制。
我目前在WordPress中使用Walker_Nav_Menu。我可以得到每个单独的长度但我不能将它们全部加在一个变量中。
首先,我检查项目是否是主标题而不是子菜单,然后使用strlen来获取文本的长度。
class top_bar_walker extends Walker_Nav_Menu {
function start_el(&$output, $item, $depth, $args) {
global $wp_query;
if( $item->menu_item_parent == 0 ) {
$length = strlen( $item->title );
}
var_dump($length);
$indent = ($depth) ? str_repeat("\t", $depth) : '';
$class_names = $value = '';
$classes = empty($item->classes) ? array() : (array) $item->classes;
$classes[] = ($item->current) ? 'active' : '';
$classes[] = ($args->has_children) ? 'has-dropdown' : '';
$args->link_before = (in_array('section', $classes)) ? '<label>' : '';
$args->link_after = (in_array('section', $classes)) ? '</label>' : '';
$output .= (in_array('section', $classes)) ? '<li class="divider"></li>' : '';
$class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item, $args ) );
$class_names = strlen(trim($class_names)) > 0 ? ' class="'.esc_attr($class_names).'"' : '';
$output .= ($depth == 0) ? $indent.'<li class="divider"></li>' : '';
$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="' .esc_attr($item->url ).'"' : '';
$item_output = $args->before;
$item_output .= (!in_array('section', $classes)) ? '<a'.$attributes.'>' : '';
// Find out if menu item is top level. If character size is greater than 15, cut down string and add '..''
$item_output .= $args->link_before.($item->menu_item_parent == 0 && strlen( $item->title ) > 10 ) ? trim( substr( apply_filters( 'the_title', $item->title, $item->ID ), 0, 10 ) ).".." : apply_filters('the_title', $item->title, $item->ID);
$item_output .= $args->link_after;
$item_output .= (!in_array('section', $classes)) ? '</a>' : '';
$item_output .= $args->after;
$output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args);
}
当我执行$ length的var转储时,我得到了
int(38) NULL NULL int(32) NULL int(16) NULL int(18) NULL int(42) NULL int(20) NULL
但我无法将它们加在一起
任何帮助都将不胜感激。