Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
$query = new WP_Query( array(
'meta_query' => array(
array(
'key' => 'close_date',
'value' => '',
'compare' => '!=',
),
)
) );
global $wpdb;
$qry = "select t1.*
from wp_posts t1
inner join
(
select
post_id
from wp_postmeta
where meta_key = 'close_date' and meta_value = '2016-03-29'
) t2 on t2.post_id = t1.ID";
$rows = $wpdb->get_results( $qry );
foreach( $rows as $row ) {
...
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question