0
WP – Ecommerce – Display the Current Category’s Parent Categorys Name
Posted by paris on Mar 19, 2012 in Wordpress
Here is the code you need to display the Parent Category of the Current Category you are viewing in WP E Commerce
<?php
$term = get_term_by( ‘slug’, get_query_var( ‘term’ ), get_query_var( ‘taxonomy’ ) );
$parent = get_term($term->parent, get_query_var(‘taxonomy’) );
echo $parent->name;
?>