I use this code and it works:
if ( in_category( 'videos' )) {
echo '<span class="corner-tag blue">something else</span>';
}
But in this code how can I add an href link?
I try something like this but it didn't work:
if ( in_category( 'videos' )) {
echo '<span class="corner-tag blue" a href="http://google.com">something else</span></a>';
}
Thanks.