web-dev-qa-db-fra.com

Exclure l'ID de post de wp_query

Comment puis-je exclure une publication spécifique d'une requête WP_Query? (Par exemple, afficher toutes les publications sauf une publication portant l'ID 278)

J'ai essayé l'argument post__not_in mais cela supprime tous les posts ..

Toute aide est la bienvenue.

Voici ma requête actuelle

<?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query(array(
        'post_type' => 'case-study',
        'paged' => $paged,
    ));
    while ($wp_query->have_posts()) : $wp_query->the_post();
?>

Merci

25
Dean Elliott

J'imagine que c'était lourd, mais pour répondre à votre question initiale, j'ai collecté tous les identifiants de publications dans un tableau de la première boucle et exclu ces publications de la deuxième boucle à l'aide de 'post__not_in' qui attend un tableau. des identifiants postaux

<?php
$args1 = array('category_name' => 'test-cat-1', 'order' => 'ASC');
$q1 = new WP_query($args);
if($q1->have_posts()) :
$firstPosts = array();
    while($q1->have_posts()) : $q1->the_post();
        $firstPosts[] = $post->ID; // add post id to array
        echo '<div class="item">';
        echo "<h2>" . get_the_title() . "</h2>";
        echo "</div>";
    endwhile;
endif;
/****************************************************************************/
// array of post id's collected in first loop, can now be used as value for the 'post__not_in' parameter in second loops query $args
$args2 = array('post__not_in' => $firstPosts, 'order' => 'ASC' );
$q2 = new WP_query($args2);
if($q2->have_posts()) :
    while($q2->have_posts()) : $q2->the_post();
        echo '<div class="item">';
        echo "<h2>" . get_the_title() . "</h2>";
        echo "</div>";
    endwhile;
endif;
?>

La première boucle affiche toutes les publications d'une catégorie et collecte les identifiants de publication dans un tableau.

La deuxième boucle affiche toutes les publications, à l'exception des publications de la première boucle.

12
Ben HartLenn

Le paramètre que vous recherchez est post__not_in (kaiser a une faute de frappe dans sa réponse). Donc, le code pourrait être comme:

<?php
$my_query = new WP_Query(array(
    'post__not_in' => array(278),
    'post_type' => 'case-study',
    'paged' => $paged,
));
while ($my_query->have_posts()) : $my_query->the_post(); endwhile;

WP_Query post__not_in documentation

43
Ziki

Vous devez définir le post__not_in arg en tant que tableau. Même pour une valeur unique. Et s'il vous plaît, ne remplacez pas les variables principales globales par des éléments temporaires.

<?php
$query = new WP_Query( array(
    'post_type'    => 'case-study',
    'paged'        => $paged,
    'post__not_in' => array( 1, ),
) );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
    $query->the_post();

    // do stuff

} // endwhile;
} // endif;
?>
9
kaiser

Codes alternatifs;

Exclure les articles de la catégorie

<?php
add_action('pre_get_posts', 'exclude_category_posts');
function exclude_category_posts( $query ) {
    if($query->is_main_query() && $query->is_home()) {
        $query->set('cat', array( -22, -27 ));
    }
}

Supprimer les messages de la page d'accueil

<?php
add_action('pre_get_posts', 'wpsites_remove_posts_from_home_page');
function wpsites_remove_posts_from_home_page( $query ) {
    if($query->is_main_query() && $query->is_home()) {
        $query->set('category__not_in', array(-1, -11));
    }
}
0