• Is there a way to either:

    Make the title of a page different from the menu item of the same name? I’ll clarify. I want a menu item that reads “Home”. I then want the header of the page that opens when clicking on that menu item to read “Welcome to website.com”

    Is there a way to separate this, with either code, or an external page?

    Any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • A lot depends on your theme. In the theme polariodpress, in header.php, here is how that is accomplished:

    <div id="menu">
                <ul>
                    <li><a href="<?php bloginfo('wpurl'); ?>" <?php if (is_home()) { ?>class="current"<?php } ?>>Home</a></li>
                    <?php wp_list_pages('title_li=&depth=1'); ?>
                </ul>
            </div>

    how about at the other page?

    I like dynamic. savable in database.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can Page Title and Menu title be different’ is closed to new replies.