• Resolved carlstep

    (@carlstep)


    Hi, this is probably a very basic problem to solve and hopefully the more experienced of you will be able to point me in the right direction.

    I’m using the twenty eleven theme. The ‘reading settings’, front page display, have been set to display ‘your latest posts’ . I’ve also added some additional static pages, for example an About page.

    On the blog itself there is a menu with the following displayed – (Home)(About)(etc…) What i would like to do is change the text of (Home)…. is this possible? I don’t want to change anything else about the page just the menu text. I’ve checked the index.php file, style.css, header.php etc… and can’t find any reference to this menu text anywhere; i’m obviously looking in the wrong place… any thoughts!

    Regards,
    cal

Viewing 3 replies - 1 through 3 (of 3 total)
  • in the Themes function.php file

    function twentyeleven_page_menu_args( $args ) {
    	$args['show_home'] = true;
    	return $args;
    }

    change:
    $args[‘show_home’] = true;
    to:
    $args[‘show_home’] = ‘whateveryouwant’;

    If you make the change parent theme functions.php file next time you update it will be over written.

    In custom menus you can change name from Home to what ever you want.

    Thread Starter carlstep

    (@carlstep)

    Thanks guys, both suggestions have been of help.
    cal

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘twentyeleven theme menu/front page’ is closed to new replies.