現在の投稿を除外しながら、現在の投稿のカテゴリのみで最近の投稿を取得しようとしていますが、動作させることができません:
$curr_cat = get_the_category();
$args = array( 'numberposts' => '10', 'post_status' => 'publish', 'category' => $curr_cat['0']->cat_ID, 'exclude' => $post->ID );
$recent_posts = wp_get_recent_posts( $args );
現在の投稿を何度も表示しているだけです。