• Well, I am using wp 3.0 and its default theme twenty one
    I am preparing its Spanish version although I am not a native spanish

    Well I need to translate just “home” with “Pagina Prinipal”

    but I’ m not to find its code in header.php

    Any help is appreciated thanks!

Viewing 1 replies (of 1 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    in functions.php change this:

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

    to this:

    function twentyten_page_menu_args( $args ) {
    	$args['show_home'] = 'Pagina Prinipal';
    	return $args;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Twenty one theme…..how to rename “home” with spanish word’ is closed to new replies.