Skip to content

Instantly share code, notes, and snippets.

@farhadhp
Last active January 24, 2018 15:36
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 farhadhp/ba343d52b22ba72ea076d56e6e233da5 to your computer and use it in GitHub Desktop.
Save farhadhp/ba343d52b22ba72ea076d56e6e233da5 to your computer and use it in GitHub Desktop.
Get current url in wordpress
<?php
/*
* Get current url in wordpress
* @return url
*/
function get_current_url(){
global $wp;
return 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