I'm weak in PHP and I believe I found the section I need to change in Function.php of my template design. But I can't seem to get the code to work.
I need my "HOME" button to go to the main website, not the blog.
Is this where I change it?
function art_menu_items()
{
global $artThemeSettings;
if (true === $artThemeSettings['menu.showHome'] && 'page' != get_option('show_on_front'))
echo '
<li><a' . (is_home() ? ' class="active"' : '') . ' href="' . get_option('home') .
And if so, how do I insert the: http://mice.org
into the section after the href=" ' . get)option('hone') .
without getting a parsing error that I'm missing "," or ";"
Right now the home link is linked to the blog itself "http://mice.org/blog" and visitors want to go back to the website home page from there.
Any help would be greatly appreciated!