have you tried
‘cat=-3’
to exclude category 3 here
Yes. I tried it but it’s doesn’t work. Also there is no parameter like cat='' at this page.
I’m waiting reply for alternative methods.
Hi again.
I’m ressurecting this post but i can’t find any solution. :/ Is anybody know any plug-in for this job or a solution?
Hello divauno.
Thanks for your reply. But ACE plugin is not solved my problem.
I just hide one category name from post information. Please look this screenshot: http://uploads.screenshot-program.com/upl7184110556.jpg
Hello.
I’m looking same solution. Can you post how did you do it?
Thanks in advance.
and i found a solution. I wanted to display the links to the category a post is in (model name) except for 1 category, which has id 1.
I never want to list that category.
<?php
$category = get_the_category();
sort($category);
if ( in_category('1') )
{
echo '<h2><a href="/babes/' . $category[1]->slug .'" title="" />' . $category[1]->cat_name . '</a></h2>';
}
else
{
echo '<h2><a href="/babes/' . $category[0]->slug .'" title="" />' . $category[0]->cat_name . '</a></h2>';
}
?>
enjoy