Hi,
I'm new to wordpress and I'm trying to change the menu page titled "Home" for something else. The website is http://www.hiap2013.com.
I've tried solutions for other themes and I've looked for the templates of header.php, but I couldn't find something that could change this.
Thanks a lot!!
Sebastián
Try looking in the theme's index.php template file.
Hi,
I'm not familiar with the language, can you see where to include it?
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
as your theme is based on Twenty Ten, have a look into functions.php and see if you can find:
$args['show_home'] = true;
return $args;
then change:
true
into:
'Something Else'
(you need to have the single quotes)