Bir etiket listesinin en az 3 etiketli yayınlar


13

Örneğin, etiket vardır { foo, bar, chocolate, mango, hammock, leaf}

Bu etiketlerin en az 3'üne sahip tüm yayınları bulmak istiyorum .

Etiketleri ile bir yayını { foo, mango, vannilla, nuts, leafo çünkü} bunu maç olacak { foo, mango, leaf} - etiketlerin gerekli kümesinden böylece en az 3 etiketleri.

Bu nedenle eşleşen gönderiler listesinde olacaktır.

Tüm yayınlarda birden fazla döngü yapmadan bunu yapmanın basit bir yolu var mı?

Yanıtlar:


8

Aşağıdaki cevap basitleştirilmiştir ve kontrol için uzun olabilir herhangi mesajlar listesini çıkış öncesi 3 uyan etiketleri var. Bir sorgu kullanarak ve eşleşen 3 etikete sahip en az bir yayınınız olduğunu varsayarsak:

//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>';

EDIT: Değişkenin $tag_min_matchayarlanması eşleşme sayısını ayarlar.


2

İşte bunu yapmanın bir yolu:

5 etiketlik bir grup verildiğinde {a, b, c, d, e}:

1) PHP'de, tekrarlamadan 3 eleman içeren tüm olası altkümeleri oluşturun:

{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) Bu alt kümeleri büyük bir sınıflandırma sorgusuna dönüştürün:

$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'
    ),
    ...
  )
) );

1

Sprclldr yaklaşımı benim kullandığım yaklaşım . While döngüsü gelince, işte bunun yerine kullandığım şey:

$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);

Daha sonra en iyi mesajları alıyorum:

$a_relatedPosts = array_slice($relatedPosts, 0, $this->numberRelatedPosts);

my_array_column PHP 5,5'in array_column işlevine benzer bir işlevdir:

  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();
  }

İlk soruyu cevaplamıyor (ancak kök sorunumu çözüyor ), örneğin: 3 ortak etikete sahip ilgili mesaj yoksa, bu aynı şekilde bazı mesajlar verecektir.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.