3
Posso escludere un post con meta key usando la funzione pre_get_posts?
Vedo che molte persone preferiscono usare pre_get_postshook anziché query_posts. Il codice seguente funziona e mostra tutti i post che hanno la meta chiave "in primo piano" 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' …