Punto Cartolina Query
// WP_Query arguments
$args = array(
'post_type' => array( 'fornitori' ),
'post_status' => array( 'published' ),
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'punto_cartolina',
'value' => '1',
'compare' => '=',
'type' => 'BINARY',
),
),
);
// The Query
$punto_cartolina = new WP_Query( $args );
// The Loop
if ( $punto_cartolina->have_posts() ) {
while ( $punto_cartolina->have_posts() ) {
$punto_cartolina->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();