i want to compare the variables
if(strcmp(the_taxonomies(array('before'=>'<span class="categories" style="font-size:16px;font-weight:bold;">','sep'=>'</span><span class="tags">','after'=>'</span>')) , "MyCategory")
{
echo "OK";
}
else{
echo "NOT OK";
}
Since the words are not matching, it always shows “NOT OK”
How can i get the output “OK”?
please let me know how to use this get_the_taxonomies with this example