Mortgage_Master
Member
Posted 2 years ago #
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.
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>
jho1086
Member
Posted 2 years ago #
how about at the other page?
I like dynamic. savable in database.