How to get the site URL for the current site in WordPress

2 Answers

0 votes
0 votes
// The function site_url() code

function site_url( $path = '', $scheme = null ) {
	return get_site_url( null, $path, $scheme );
} 

 



answered Dec 11, 2018 by avibootz

Related questions

1 answer 226 views
1 answer 208 views
1 answer 194 views
1 answer 227 views
1 answer 492 views
1 answer 352 views
...