问题描述

普通 Wordpress 菜单看起来像:

Home | Blog | About us | Contact

但是我看到很多页面都有这些链接的描述:

Home Page | Our Blogs | About us
| Contact
….meet us…| read more| basic info| contact form

如何实现这一点?

(我希望它成为我所有主题的核心功能,所以没有插件,我只想知道它是如何完成的)

最佳解决方案

您需要导航菜单的自定义步行者。

基本上,您将'walker'参数添加到 wp_nav_menu()选项,并调用增强类的实例:

wp_nav_menu(
    array (
        'menu'            => 'main-menu',
        'container'       => FALSE,
        'container_id'    => FALSE,
        'menu_class'      => '',
        'menu_id'         => FALSE,
        'depth'           => 1,
        'walker'          => new Description_Walker
    )
);

Description_Walker 类扩展了 Walker_Nav_Menu,并更改了 start_el( &$output, $item, $depth, $args )的功能,以查找 $item->description

一个基本的例子:

/**
 * Create HTML list of nav menu items.
 * Replacement for the native Walker, using the description.
 *
 * @see    https://wordpress.stackexchange.com/q/14037/
 * @author toscho, http://toscho.de
 */
class Description_Walker extends Walker_Nav_Menu
{
    /**
     * Start the element output.
     *
     * @param  string $output Passed by reference. Used to append additional content.
     * @param  object $item   Menu item data object.
     * @param  int $depth     Depth of menu item. May be used for padding.
     * @param  array|object $args    Additional strings. Actually always an
                                     instance of stdClass. But this is WordPress.
     * @return void
     */
    function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 )
    {
        $classes     = empty ( $item->classes ) ? array () : (array) $item->classes;

        $class_names = join(
            ' '
        ,   apply_filters(
                'nav_menu_css_class'
            ,   array_filter( $classes ), $item
            )
        );

        ! empty ( $class_names )
            and $class_names = ' class="'. esc_attr( $class_names ) . '"';

        $output .= "<li id='menu-item-$item->ID' $class_names>";

        $attributes  = '';

        ! empty( $item->attr_title )
            and $attributes .= ' title="'  . esc_attr( $item->attr_title ) .'"';
        ! empty( $item->target )
            and $attributes .= ' target="' . esc_attr( $item->target     ) .'"';
        ! empty( $item->xfn )
            and $attributes .= ' rel="'    . esc_attr( $item->xfn        ) .'"';
        ! empty( $item->url )
            and $attributes .= ' href="'%20%20%20.%20esc_attr(%20$item->url%20%20%20%20%20%20%20%20)%20.'"';

        // insert description for top level elements only
        // you may change this
        $description = ( ! empty ( $item->description ) and 0 == $depth )
            ? '<small class="nav_desc">' . esc_attr( $item->description ) . '</small>' : '';

        $title = apply_filters( 'the_title', $item->title, $item->ID );

        $item_output = $args->before
            . "<a $attributes>"
            . $args->link_before
            . $title
            . '</a> '
            . $args->link_after
            . $description
            . $args->after;

        // Since $output is called by reference we don't need to return anything.
        $output .= apply_filters(
            'walker_nav_menu_start_el'
        ,   $item_output
        ,   $item
        ,   $depth
        ,   $args
        );
    }
}

或者 as @nevvermind commented,您可以继承父级 start_el 功能的所有功能,只需将描述附加到 $output

function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 )
{
    parent::start_el( $output, $item, $depth, $args );
    $output .= sprintf(
        '<i>%s</i>',
        esc_html( $item->description )
    );
}

样品输出:

现在启用 wp-admin/nav-menus.php 中的描述字段可以编辑该字段。如果你不 WP 只是将完整的帖子内容删除。

进一步阅读:

就是这样

次佳解决方案

由于 WordPress 3.0,您不再需要自定义步行者了!

walker_nav_menu_start_el 过滤器,参见 https://developer.wordpress.org/reference/hooks/walker_nav_menu_start_el/

例:

function add_description_to_menu($item_output, $item, $depth, $args) {
    if (strlen($item->description) > 0 ) {
        // append description after link
        $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description));

        // insert description as last item *in* link ($input_output ends with "</a>{$args->after}")
        //$item_output = substr($item_output, 0, -strlen("</a>{$args->after}")) . sprintf('<span class="description">%s</span >', esc_html($item->description)) . "</a>{$args->after}";
    }

    return $item_output;
}
add_filter('walker_nav_menu_start_el', 'add_description_to_menu', 10, 4);

第三种解决方案

这不比其他建议好或坏; 它只是不同它也很短,也很甜。

不要将描述字段用作 @toscho 建议,您可以使用所需的文本填写每个菜单项上的”Title” 字段,然后使用此 CSS:

 .menu-item a:after { content: attr(title); }

它也很容易使用 jQuery 附加它,但文本是足够装饰,CSS 似乎是适当的。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。