Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created July 11, 2022 12:29
Show Gist options
  • Save someguy9/7b22f02fd45f8fc231f4db642f5f8e6f to your computer and use it in GitHub Desktop.
Save someguy9/7b22f02fd45f8fc231f4db642f5f8e6f to your computer and use it in GitHub Desktop.
Get current page URL in WordPress
<?php
global $wp;
$current_url = home_url( add_query_arg( array(), $wp->request ) );
echo $current_url;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment