Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created February 12, 2020 11:59
Show Gist options
  • Save Farmatique/938f5168469e0685e2c4eba05412fbb7 to your computer and use it in GitHub Desktop.
Save Farmatique/938f5168469e0685e2c4eba05412fbb7 to your computer and use it in GitHub Desktop.
Get current url inside wordpress (php)
function current_url()
{
$url = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$validURL = str_replace("&", "&amp", $url);
return $validURL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment