How to change the name of my homepage
-
It’s not as easy as it sounds. I want my website navigation to be all lowercase for aesthetic purposes. Currently I can’t find the location to change the “Home” link to “home”. https://ashleywalters.net/wp/
I am using a coller child theme. The code in my header calling the navigation menu is:
<div id="nav"> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </div>
I’ve seen several other solutions that all use a different line of php to call in the list. They didn’t work for me. Also I am not using the WP menu section in the dashboard. I can’t seem to edit the name in that section anyway.
Aside from the basic links, I’d also like the menu to be in list format to allow for css styling. Which template file is the menu located in? I also need to know because as you can see, I am using a float:right style on the menu items and now my menu is backwards. I need to change the order.
- The topic ‘How to change the name of my homepage’ is closed to new replies.