異なるカスタム投稿の条件と重ねたサブループ (get_posts)
<?php
$args1 = array(
'posts_per_page' => 5,
'post_type' => 'カスタム投稿名1',
'tax_query' => array(
array(
'taxonomy' => 'カスタム投稿のカテゴリスラッグ',
'field' => 'slug',
'terms' => 'カテゴリ名'
)
)
);
$args2 = array(
'posts_per_page' => 5,
'post_type' => 'カスタム投稿名2',
'tax_query' => array(
array(
'taxonomy' => 'カスタム投稿のカテゴリスラッグ',
'field' => 'slug',
'terms' => 'カテゴリ名'
)
)
);
$myposts1 = get_posts( $args1 );
$myposts2 = get_posts( $args2 );
$myposts = array_merge($myposts1, $myposts2 );
?>
参考:ワードプレスで、複数の$argsを一つの結果にまとめたい