分岐基本

<?php if(is_home()): //ホームだったら?>

<?php elseif(is_tax('genre')): //タクソノミーだったら?>

<?php elseif(is_singular( 'performer' ) )://カスタムポストのシングルページだったら?>

<?php elseif (is_archive()): //アーカイブだったら?>
<?php if (( get_post_type() == 'event_report')): //event_reportのポストタイプだったら?>
<?php endif; ?>

<?php else: //それ以外だったら?>

<?php endif; ?>