Return to Snippet

Revision: 48223
at June 27, 2011 00:11 by innerstorm


Initial Code
<?php
$parentCatList = get_category_parents($cat,false,',');
$parentCatListArray = split(",",$parentCatList);
$topParentName = $parentCatListArray[0];
$sdacReplace = array(" " => "-", "(" => "", ")" => "");
$topParent = strtolower(strtr($topParentName,$sdacReplace));
?>

Initial URL

                                

Initial Description

                                

Initial Title
wp get top parent category

Initial Tags

                                

Initial Language
PHP