single.php ページ分岐

<?php if(in_category(23)) : ?> <!-- 表示関連 エリア カテゴリー  開始 -->

<h3 style="margin:5px;padding:0;">関連動画</h3>
<div class="gr3 clearfix">
<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 2, // 表示件数
'category' => 23, // カテゴリIDもしくはスラッグ名
'order' => 'ASC'
));
?>
<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<p><?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('large-feature'); ?>
</a>
<?php endif; ?>
</p> <!--表示する内容ここまで-->
</div>
<?php endforeach; endif; ?> <!-- ループ終了 -->