Answer the question
In order to leave comments, you need to log in
WordPress how to change Home title for mobile version?
Hello, I changed the name of the menu item from Home to Store through the WP settings. It worked when viewing the page from a computer. But if you view the main page from a mobile phone, then when you open the Menu, the name Home does not change. All other names of renamed menu items change. Please help me change the name of Home.
Answer the question
In order to leave comments, you need to log in
Instead of editing the engine files, it is better to find a call in the child theme wp_page_menu()
and show_home
specify the desired text as a parameter. More or less like this:
wp_page_menu( array(
'show_home' => 'My Text';
) );
functions.php
a child theme:function my_home_text( $args ) {
$args['show_home'] = 'My Text';
return $args;
}
add_filter( 'wp_page_menu_args', 'my_home_text' );
perhaps a separate menu for mobile devices has been created - look at the appearance - menu
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question