Domande taggate «featured-post»

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' …


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.