$args = array(
'posts_per_page' => 10,
'post_type' => 'post',
'category_name' => 'stati',
'post_status' => 'publish'
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
$query->the_post();
the_title();
}
wp_reset_postdata();
$args = array(
'posts_per_page' => 10,
'category_name' => 'stati',
'post_status' => 'publish',
'meta_query' => array(
array(
'key' => 'color',
'compare' => 'EXISTS'
)
)
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
$query->the_post();
the_title();
}
wp_reset_postdata();