Does anyone have an idea why my home_url() function gets the URL of the current page instead of the site address? (The site runs locally using MAMP.)
Leave a Reply
You must be logged in to post a comment.
Does anyone have an idea why my home_url() function gets the URL of the current page instead of the site address? (The site runs locally using MAMP.)
You must be logged in to post a comment.
Since you didn’t post actual code in your question, I can only speculate. However, a common problem is that, when calling
home_url()
, it is not echoed. The value of the function is returned, rather than echoed, so it must be explicitly echoed by the code.I’m guessing you have something like this:
Which renders like so:
…and would explain why the linked URL is the current page, rather than the expected URL for the site front page.
If so, change it to this: