get_home_url() just returns current URL get_home_url() just returns current URL wordpress wordpress

get_home_url() just returns current URL


It's just home_url(). So:

echo home_url();

Will output the homepage of your Wordpress installation.


Have you tried:

echo get_bloginfo('url')


You need to echo that function, so it should be:

<?php echo get_home_url(); ?>