Post con almeno 3 tag di un elenco di tag


13

Ad esempio, ci sono i tag { foo, bar, chocolate, mango, hammock, leaf}

Vorrei trovare tutti i post con almeno 3 di questi tag .

Un post con tag { foo, mango, vannilla, nuts, leaf} corrisponderà perché ha { foo, mango, leaf} - così almeno 3 tag dal set di tag necessaria.

Pertanto sarebbe nell'elenco dei post corrispondenti.

C'è un modo semplice per farlo, senza fare più cicli attraverso tutti i post?

Risposte:


8

La risposta di seguito è semplificata e potrebbe essere estesa per verificare se qualche post ha 3 tag corrispondenti prima di produrre l'elenco. Usando una query e supponendo che tu abbia almeno un post con 3 tag corrispondenti:

//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: la regolazione della variabile $tag_min_matchimposterà il numero di corrispondenze.


2

Ecco un modo per farlo:

Dato un insieme di 5 tag, {a, b, c, d, e}:

1) In PHP, genera tutti i possibili sottoinsiemi contenenti 3 elementi, senza ripetizioni:

{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) Converti questi sottoinsiemi in una query di tassonomia di massa:

$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

L'approccio di sprclldr è quello che ho usato. Per quanto riguarda il ciclo while, ecco quello che ho usato invece:

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

Prendo quindi i primi messaggi:

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

my_array_column è una funzione simile a quella della matrice_colonna di PHP 5,5:

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

Non risponde alla domanda iniziale (ma risolve il mio problema di root ), come: se non ci sono post correlati con 3 tag comuni, questo fornirà comunque alcuni post.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.