Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/a2b5ed09596376e450a946473684213c to your computer and use it in GitHub Desktop.
Save someguy9/a2b5ed09596376e450a946473684213c to your computer and use it in GitHub Desktop.
Get current page URL with query string in PHP
<?php
$url_parts = parse_url( home_url() );
$current_url_with_query_string = $url_parts['scheme'] . "://" . $url_parts['host'] . add_query_arg( NULL, NULL );
echo $current_url_with_query_string;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment