Answers for "wordpress get current url with parameters"

0

wordpress get current url with parameters

// absolute URI in multisite aware environment
$parts = parse_url( home_url() );
$current_uri = "{$parts['scheme']}://{$parts['host']}" . add_query_arg( NULL, NULL );
Posted by: Guest on February-03-2022

Code answers related to "wordpress get current url with parameters"

Browse Popular Code Answers by Language