If is category id not working
-
Hi,
I want to show the category link of post only for some categories.I tried this, it’s the bottom of each post
<?php is_category( array( '3,7,18,28' ) ); ?> <?php $category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } ?> <?php ;?>
but it shows the link for all categories and not only for the IDs above…Why?
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘If is category id not working’ is closed to new replies.