Answer the question
In order to leave comments, you need to log in
How to duplicate menu item text in wordpress?
Hello, tell me how to duplicate the text of a menu item in a separate span in CMS WORDPRESS? Needed to create a hover effect.
Answer the question
In order to leave comments, you need to log in
In the menu settings for this menu item, specify a custom CSS class, for example 'item-wrap', further in functions.php:
function pss_wrap_nav_item( $title, $item ) {
if( in_array( 'item-wrap', $item->classes ) ) {
$title = '<span class="item-wrap has-effect">' . $title . '</span>';
}
return $title;
}
add_filter( 'nav_menu_item_title', 'pss_wrap_nav_item', 10, 2 );
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question