php WordPress菜单项的说明

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress菜单项的说明相关的知识,希望对你有一定的参考价值。

<?
/* Menu Walker for description */

function prefix_nav_description( $item_output, $item, $depth, $args ) {
    if ( !empty( $item->description ) ) {
        $item_output = str_replace( $args->link_after . '</a>', '<span class="menu-item-description">' . $item->description . '</span>' . $args->link_after . '</a>', $item_output );
    }
 
    return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'prefix_nav_description', 10, 4 );
?>

以上是关于php WordPress菜单项的说明的主要内容,如果未能解决你的问题,请参考以下文章

给wordpress后台侧栏菜单添加自定义字段的方法

php 使用类菜单 - 拇指将特色图像缩略图添加到菜单项的子项

WordPress主题开发:开启导航菜单功能

从 WordPress 菜单或子菜单项获取 ACF 字段

仅通过滚动更改引用每个菜单项的背景图像

子菜单不在WordPress下拉菜单中复制样式