カスタム投稿タイプの条件分岐
シングルページ
<?php if (is_singular('post_type')): ?>
<?php endif; ?>
アーカイブページ
<?php if (is_post_type_archive('post_type')): ?>
<?php endif; ?>
例:staffblogというカスタム投稿タイプで固定ページがblogの場合
<?php if (is_page('blog')||is_post_type_archive('staffblog')||is_singular('staffblog')):?>
<?php endif; ?>