33 lines
878 B
PHP
33 lines
878 B
PHP
<!--[archive/header]-->
|
|
|
|
<?php if( is_events() ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/event" ) ?>
|
|
|
|
<?php elseif( is_branding() ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/special/branding" ) ?>
|
|
|
|
<?php elseif( (is_special()) ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/special/", get_special_slug() ) ?>
|
|
|
|
<?php elseif( is_post_type_archive() ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/post-type" ) ?>
|
|
|
|
<?php elseif( is_tag() ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/tag" ) ?>
|
|
|
|
<?php elseif( is_author() ) : ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/author" ) ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php get_template_part( "template-parts/archive/header/category" ) ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<!--[/archive/header]-->
|