web-dev-qa-db-ja.com

タグリストのうち少なくとも3つのタグがある投稿

例えば、タグfoobarchocolatemangohammockleaf}があります。

これらのタグのうち少なくとも3つのタグ を持つすべての投稿を見つけたいです。

タグが{foomangovannillanutsleaf}の投稿は、{foomangoleaf}が含まれているため、一致します。

したがって、一致した投稿の一覧に表示されます。

すべての投稿を何度も繰り返すことなく、簡単な方法はありますか?

12
Cedric

以下の答えは単純化されており、リストを出力する前に any postsに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を調整して一致の数を設定します。

8
stellarcowboy

これを行う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'
    ),
    ...
  )
) );
2
scribu

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つの共通のタグを持つ関連する記事がない場合、これはすべて同じです.

1
Cedric