Skip to content

Instantly share code, notes, and snippets.

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