I want my main category and sub categories to be displayed differently. Ideally I'd like to edit archive.php with a simple conditional statement. My link structure is like this:
/blog/category/*category*/*sub-category*/
So I've been trying to make a conditional statement like this:
if (isset(*sub-category*)) {
}
else {
}
I have been trying to get values get_query_var but no luck yet.
Is this possible?