Last active
August 15, 2024 19:10
-
-
Save leereamsnyder/fac3b9ccb6b99ab14f36 to your computer and use it in GitHub Desktop.
In WordPress, get current URL including query string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
Re-use some existing WordPress functions so you don't have to write a bunch of raw PHP to check for SSL, port numbers, etc | |
Place in your functions.php (or re-use in a plugin) | |
If you absolutely don't need or want any query string, use home_url(add_query_arg(array(),$wp->request)); | |
Hat tip to: | |
+ http://kovshenin.com/2012/current-url-in-wordpress/ | |
+ http://stephenharris.info/how-to-get-the-current-url-in-wordpress/ | |
*/ | |
/** | |
* Build the entire current page URL (incl query strings) and output it | |
* Useful for social media plugins and other times you need the full page URL | |
* Also can be used outside The Loop, unlike the_permalink | |
* | |
* @returns the URL in PHP (so echo it if it must be output in the template) | |
* Also see the_current_page_url() syntax that echoes it | |
*/ | |
if ( ! function_exists( 'get_current_page_url' ) ) { | |
function get_current_page_url() { | |
global $wp; | |
return add_query_arg( $_SERVER['QUERY_STRING'], '', home_url( $wp->request ) ); | |
} | |
} | |
/* | |
* Shorthand for echo get_current_page_url(); | |
* @returns echo'd string | |
*/ | |
if ( ! function_exists( 'the_current_page_url' ) ) { | |
function the_current_page_url() { | |
echo get_current_page_url(); | |
} | |
} | |
?> |
Nevermind, 'trailingslashit' is the answer. Thanks a lot for the function.
Thank you for the snippet, it work like a charm
This one is shorter:
echo home_url( add_query_arg( null, null ));
Thanks janw-oostendorp !
Best answer
Am I the only one that missing something or
echo home_url( add_query_arg( null, null ));
Does not work as intended, on subdomains the subdomain get repeated.
add_query_arg( $_SERVER['QUERY_STRING'], '', home_url( $wp->request ) )
Last slash get missing, might corrupt endpoints url:s
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any idea how to add a slash before the query string?