I have a start page which is, by default, named "Home".
I want to change the title of that page, but I can't see it in "pages" section in administration section. Any solution?
Thanks.
I have a start page which is, by default, named "Home".
I want to change the title of that page, but I can't see it in "pages" section in administration section. Any solution?
Thanks.
theme?
cover-wp
try in functions.php of the theme (a few lines from the end):
function mytheme_nav_fallback() { ?>
<ul id="menu">
<li<?php if(is_home()) echo ' class="current_page_item"'; ?>><a href="<?php echo home_url(); ?>/">Home</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul><!-- /menu --><?php
}
change Home in there
It works, thanks!
Before I close this, do you, maybe, know something about
GD Star Rating plugin?
It has support for my language, but I don't know how to change it...
This topic has been closed to new replies.