Only print the parent category (WordPress) -


i making blog template theme. have 1 problem...

if post post on blog, want display parent category of post.

so example, if post post category hierarchy: - vacation - france - first day

i want vacation displayed on blog.

does know how solve problem?

sincerely, joren

<?php $parentscategory ="";  foreach((get_the_category()) $category) { if ($category->category_parent == 0) {  $parentscategory .= ' <a href="' . get_category_link($category->cat_id) . '" title="' . $category->name . '">' . $category->name . '</a>, ';  }  }  echo substr($parentscategory,0,-2); ?> 

Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -