web-dev-qa-db-fra.com

Comment modifier la requête pour exclure les publications par slug?

Comment puis-je modifier ma requête afin d'exclure certains messages par slug? C'est possible?

query_posts(array('category_name' => 'Mycat', 'posts_per_page' => -1));

Ty

1
webmasters

Vous pouvez obtenir l'identifiant de publication du slug avec la fonction url_to_postid() :

$ID = url_to_postid(slug);

puis simplement exclure l'ID de votre requête:

query_posts(array('category_name' => 'Mycat', 'posts_per_page' => -1, 'post__not_in' => $ID ));

Vous pouvez créer un tableau d'ID d'articles si vous devez exclure plusieurs pages.

2
Dalton

N'utilisez pas query_posts()! . Filtrez pre_get_posts à la place *.

<?php
function wpse59617_filter_pre_get_posts( $query ) {
    // Only modify the main query
    if ( ! $query->is_main_query() ) { return $query; }
    // Get the ID of the post to exclude
    $slug = 'some-post-slug';
    $post_id = url_to_postid( $slug );
    // Modify the query
    $query->set( 'category_name', 'Mycat' );
    $query->set( 'post__not_in', $post_id );
    $query->set( 'posts_per_page', '-1' );
    // Return the modified query
    return $query;    
}
add_filter( 'pre_get_posts', 'wpse59617_filter_pre_get_posts' );
?>

* Non, vraiment: n'utilisez pas query_posts(). Voici pourquoi .

4
Chip Bennett