Quick Wordpress question. Is it possible to check against a specific category, so not to display it? I tried this, but my category was still being echoed (no errors).
<?php if (the_category() != "NAMEOFMYCATEGORY") { the_category(' | '); } ?>
Or would I need to work with a new function?
To clarify: I want to HIDE 1 specific category so it doesn't show up.

var_dumpon the output ofthe_category()end post the result. – JBRTRND Jun 13 '12 at 7:44var_dump( the_category() );– JBRTRND Jun 13 '12 at 7:52the_category()echo the output, not return it. – cbuckley Jun 13 '12 at 8:19