Skip to content

Instantly share code, notes, and snippets.

@kostiantyn-petlia
Last active August 29, 2015 14:26
Show Gist options
  • Save kostiantyn-petlia/4a84b38094197171c7e1 to your computer and use it in GitHub Desktop.
Save kostiantyn-petlia/4a84b38094197171c7e1 to your computer and use it in GitHub Desktop.
WP: get category name use slug
<?php
$idObj = get_category_by_slug('s_about');
$id = $idObj->term_id;
echo get_cat_name($id);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment