• 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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lividinstruments

    (@lividinstruments)

    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”>

      <li <?php if(is_home()){echo ‘class=”current_page_item”‘;}?>>“>Blog
      <?php wp_list_pages(‘title_li=&depth=0’); ?>

    </div>

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Home text in nav’ is closed to new replies.