In every category page I want to show the other category possibilities.
How do I expel the category-image of the current category?
thanks in advance
In every category page I want to show the other category possibilities.
How do I expel the category-image of the current category?
thanks in advance
Never mind, I found it! :)
For those who want to know
if ($term->name == 'this_term_should_be_skipped')
{
continue;
}
else
{
// the code that is already in the foreach loop...
}You must log in to post.