How do I change the navigation to say something other then 'Home' in the azul theme. I want to change it to blog but can't find it anywhere? Thanks.
How do I change the navigation to say something other then 'Home' in the azul theme. I want to change it to blog but can't find it anywhere? Thanks.
I figured it out. replace the navbar bit with this code. Then change the 'blog' text with the text of your liking.
<div id="navbar">
<ul id="topnav">
<li <?php if(is_home()){echo 'class="current_page_item"';}?>>" title="<?php _e('Home'); ?>"><?php _e('blog'); ?>
<?php wp_list_pages('title_li=&depth=1&sort_column=menu_order');?>
</div>
The above code didn't work for me. Here is what I came up with:
<div id="navbar">
</div>
This topic has been closed to new replies.