Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Created March 2, 2020 14:49
Show Gist options
  • Save jrobinsonc/7815839a3dc1bc099266f4d5ef0b7931 to your computer and use it in GitHub Desktop.
Save jrobinsonc/7815839a3dc1bc099266f4d5ef0b7931 to your computer and use it in GitHub Desktop.
Wordpress helper: Get current URL
<?php
/**
* Returns the current url.
*
* @return string
*/
function get_current_url() {
global $wp;
return home_url( $wp->request );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment