3
pre_get_posts 함수를 사용하여 메타 키로 게시물을 제외 할 수 있습니까?
많은 사람들이 pre_get_posts대신 후크 를 사용하는 것을 선호합니다 query_posts. 아래 코드는 작동하며 메타 키가 "추천 된"모든 게시물을 보여줍니다. function show_featured_posts ( $query ) { if ( $query->is_main_query() ) { $query->set( 'meta_key', 'featured' ); $query->set( 'meta_value', 'yes' ); } } add_action( 'pre_get_posts', 'show_featured_posts' ); 그러나 ' featured'meta_key 가있는 게시물을 기본 쿼리에서 …