回答:
以下の答えは簡略化されており、リストを出力する前に、投稿に3つの一致するタグがあるかどうかを確認するように拡張できます。1つのクエリを使用し、3つの一致するタグを持つ少なくとも1つの投稿があると仮定します。
//List of tag slugs
$tags = array('foo', 'bar', 'chocolate', 'mango', 'hammock', 'leaf');
$args = array(
'tag_slug__in' => $tags
//Add other arguments here
);
// This query contains posts with at least one matching tag
$tagged_posts = new WP_Query($args);
echo '<ul>';
while ( $tagged_posts->have_posts() ) : $tagged_posts->the_post();
// Check each single post for up to 3 matching tags and output <li>
$tag_count = 0;
$tag_min_match = 3;
foreach ( $tags as $tag ) {
if ( has_tag( $tag ) && $tag_count < $tag_min_match ) {
$tag_count ++;
}
}
if ($tag_count == $tag_min_match) {
//Echo list style here
echo '<li><a href="'. get_permalink() .'" title="'. get_the_title() .'">'. get_the_title() .'</a></li>';
}
endwhile;
wp_reset_query();
echo '</ul>';
編集:変数$tag_min_match
を調整すると、一致する数が設定されます。
これを行う1つの方法を次に示します。
5つのタグのセットが与えられた場合、{a, b, c, d, e}
:
1)PHPで、繰り返しのない3つの要素を含むすべての可能なサブセットを生成します。
{a, b, c}
{a, b, d}
{a, b, e}
{a, c, d}
{a, c, e}
{b, c, d}
{b, c, e}
{c, d, e}
2)これらのサブセットを大規模な分類クエリに変換します。
$q = new WP_Query( array(
'tax_query' => array(
'relation' => 'OR',
array(
'terms' => array( 'a', 'b', 'c' ),
'field' => 'slug',
'operator' => 'AND'
),
array(
'terms' => array( 'a', 'b', 'd' ),
'field' => 'slug',
'operator' => 'AND'
),
...
)
) );
sprclldrのアプローチは、私が使用したものです。whileループについては、代わりに私が代わりに使用したものがあります:
$relatedPosts = $tagged_posts->posts;
$indexForSort = array();
for ($i = count($relatedPosts) - 1; $i >= 0; $i--) {
$relatedPostTags = get_tags($relatedPosts[$i]->ID);
//get the ids of each related post
$relatedPostTags = $this->my_array_column($relatedPostTags, 'term_id');
$relatedPostTagsInPostTag = array_intersect($tags, $relatedPostTags);
$indexForSort[$i] = count($relatedPostTagsInPostTag);
}
//sort by popularity, using indexForSort
array_multisort($indexForSort, $relatedPosts, SORT_DESC);
次に、上位の投稿を取り上げます。
$a_relatedPosts = array_slice($relatedPosts, 0, $this->numberRelatedPosts);
my_array_column
PHP 5,5のarray_columnと同様の関数です:
protected function my_array_column($array, $column) {
if (is_array($array) && !empty($array)) {
foreach ($array as &$value) {
//it also get the object's attribute, not only array's values
$value = is_object($value) ? $value->$column : $value[$column];
}
return $array;
}
else
return array();
}
最初の質問には答えません(ただし、私の根本的な問題は解決します)。3つの共通タグを持つ関連する投稿がない場合、これは同じようにいくつかの投稿を提供します。