説明付きのナビゲーションメニューによくあるあれ(日本語と英語を併記とか)。
まずメニューに説明文を入力する説明欄は、外観→メニューの表示オプションで、□説明 にチェックをいれて、メニューに説明を付与できるようにする。
それからfunctions.phpに以下を記述
1 2 3 4 5 6 7 |
function prefix_nav_description( $item_output, $item, $depth, $args ) { if ( !empty( $item->description ) ) { $item_output = str_replace( '">' . $args->link_before . $item->title, '">' . $args->link_before . '<strong>' . $item->title . '</strong>' . '<span class="menu-item-description">' . $item->description . '</span>' , $item_output ); } return $item_output; } add_filter( 'walker_nav_menu_start_el', 'prefix_nav_description', 10, 4 ); |