VelichkoAlexander
9/18/2015 - 7:40 AM

WordPress Get Category name By label

<?php
$idObj = get_category_by_slug('s_about');
$id = $idObj->term_id;
echo get_cat_name($id);
?>