Skip to content

Instantly share code, notes, and snippets.

@Perun
Created March 26, 2014 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Perun/9776259 to your computer and use it in GitHub Desktop.
Save Perun/9776259 to your computer and use it in GitHub Desktop.
Den bereinigten Namen der Kategorie (Slug) im Theme ausgeben.
<?php
if (is_category()) {
$cat = get_query_var('cat');
$yourcat = get_category ($cat);
echo 'the slug is '. $yourcat->slug;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment