Skip to content

Instantly share code, notes, and snippets.

@aprydatko
Created February 26, 2017 16:46
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 aprydatko/3d3c73829fcf6a7da074e89c62385804 to your computer and use it in GitHub Desktop.
Save aprydatko/3d3c73829fcf6a7da074e89c62385804 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