Get category grandparent help!
-
Hi guys,
I have some code which retrieves the meta data associated to a categories parent. I’ve just added another child layer so therefore need to amend the code so that it now retrieves the grandparent instead. Does anyone know how to tweak the following to make this happen? I have tried myself but not had any joy. Thanks.
<?php $current = get_query_var('cat'); $cat = get_category($current); $parent = $cat->category_parent; if(function_exists('get_terms_meta')) { $screen = get_terms_meta($parent, 'logo'); $screen = $screen[0]; } ?> <a href="<?php echo get_category_link($parent); ?>"><img src="<?php echo ($screen); ?>" border="0" /></a>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Get category grandparent help!’ is closed to new replies.