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 hirejordansmith/3738dc03933afb8ca929d97a009e34b0 to your computer and use it in GitHub Desktop.
Save hirejordansmith/3738dc03933afb8ca929d97a009e34b0 to your computer and use it in GitHub Desktop.
How to Get the Current Page URL with PHP
<?php
// Non WordPress
$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
// WordPress Site
global $wp;
$current_url = add_query_arg( $wp->query_string, '', home_url( $wp->request ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment