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菜单项的说明的主要内容,如果未能解决你的问题,请参考以下文章