Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created July 14, 2015 01:05
Show Gist options
  • Select an option

  • Save pablocattaneo/eb1c096d42585083b1af to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/eb1c096d42585083b1af to your computer and use it in GitHub Desktop.
Devuelve el slug de la categoría. Es decir si la url es "http://localhost/ayaingenieria/category/trabajos/" devuelve la palabra trabajos. Se debe usar en el template de category
<?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