dustincaruso.com
get the top parent category in WordPress | dustin caruso
http://dustincaruso.com/get-the-top-parent-category-in-wordpress
January 5, 2011. April 23, 2014. Get the top parent category in WordPress. Here’s a cool little scrap of code to get the name of the top parent category in WordPress. Php function get parent category name($cat) { $parentCategoryList = get category parents($cat, false, ','); $parentCategoryListArray = split(',', $parentCategoryList); $parentName = $parentCategoryListArray[0]; $stuffToReplace = array(' ' = '-', '(' = ' , ')' = ' ); $parent = strtolower(strtr($parentName,$stuffToReplace) ; return $parent; }?