Skip to content

Instantly share code, notes, and snippets.

@vasylpb
Last active January 18, 2016 10:49
Show Gist options
  • Save vasylpb/60eec369a29eb4be76b8 to your computer and use it in GitHub Desktop.
Save vasylpb/60eec369a29eb4be76b8 to your computer and use it in GitHub Desktop.
Wordpress Get Category Name by Label
<?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