How do I change the word "Home" to "Blog" on my menu? I am using the WordPress twenty Ten theme...
http://www.thedavidlynchblog.com/
Thanks!!!
Dave
How do I change the word "Home" to "Blog" on my menu? I am using the WordPress twenty Ten theme...
http://www.thedavidlynchblog.com/
Thanks!!!
Dave
Your best bet is to use a custom menu created under Admin->Appearance->Menus.
Here is a tutorial on the WP Menu system:
consider to crate a child theme to work with http://codex.wordpress.org/Child_Themes
you are otherwise running the risk to overwrite all customisations if you upgrade the theme.
in functions.php, find:
function twentyten_page_menu_args( $args ) {
$args['show_home'] = true;
change:
true
to:
'Blog'This topic has been closed to new replies.