Reputation: 51
Hy, I need to make my sub-sites in WordPress MultiSite Network to have one home url, mainly for the logo to click and goto the main network site.
Upvotes: 1
Views: 345
Reputation: 1391
Try with
echo network_home_url();
Or as HTML:
<a href="<?php echo network_home_url(); ?>">Go to Homepage</a>
The function will return the link url so simply put it as href attribute of any anchor tag to make it become a link
Upvotes: 2