Query WordPress Untuk Format Standar

Berikut adalah kueri pencarian post untuk loop WordPress dengan menyingkirkan beberapa format post atau post-format dan hanya menampilkan post dengan format standar saja.

$wp_query->query( array(
'posts_per_page' => get_option( 'posts_per_page' ),
'paged' => $paged,
'tax_query' => array( array(
'taxonomy' => 'post_format',
'terms' => array( 'post-format-gallery', 'post-format-aside', 'post-format-link',
'post-format-gallery', 'post-format-status', 'post-format-quote',
'post-format-image', 'post-format-video', 'post-format-music' ),
'field' => 'slug',
'operator' => 'NOT IN' )
),
'ignore_sticky_posts' => true,
'posts_per_page' => 4
) );

. Permalink

Leave a Reply

Your email address will not be published. Required fields are marked *

*

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>