How Do I Change Home URI in 3.0?
-
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: https://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 “https://mice.org/blog” and visitors want to go back to the website home page from there.
Any help would be greatly appreciated!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How Do I Change Home URI in 3.0?’ is closed to new replies.