WordPress zdobądź domenę
// WORDPRESS GET SITE URL:
echo get_site_url(); // echo's http://www.yoursitename.com
gtamborero
// WORDPRESS GET SITE URL:
echo get_site_url(); // echo's http://www.yoursitename.com
document.URL
> "http://example.com/page1.html"
document.location.href
> "http://example.com/page1.html"
document.location.pathname
> "/page1.html"
document.location.origin
> "http://example.com"
// get site url
$url = get_option( 'siteurl' );