I need to call in a different header.php (not just the css) for a certain category on a Custom Post Type.
I have tried everything I could find, and the only one that has worked at all is "term_exists".
However, it is not just calling header2 into this category, but into ALL categories of this custom post type.
<?php if (term_exists( 71 )) {
get_header('header2');
} else {
session_start(); get_header();
}?>
This seems like it would be a simple fix, but I have killed hours upon hours on this. Any suggestions?