Hi,
I am adding a filter to the content with my plugin, which adds a link to certain keywords.
Now I want to exclude certain posts which are in a particular category.
In other ways, only apply the filter to posts which are not in that category. Anybody knows if this is possible?
function filter_content()
{
//content stuff here
}
add_filter('the_content', 'filter_content', 999);
thanks!