Skip to content

Instantly share code, notes, and snippets.

@ville6000
Last active October 22, 2015 08:26
Show Gist options
  • Save ville6000/dd24b0830b0d37d999f4 to your computer and use it in GitHub Desktop.
Save ville6000/dd24b0830b0d37d999f4 to your computer and use it in GitHub Desktop.
Get current url in WordPress
<?php
function get_current_url() {
global $wp;
return add_query_arg( $_SERVER['QUERY_STRING'], '', home_url( $wp->request ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment