Orderby ACF custom field date don't work

前端 未结 3 1674
-上瘾入骨i
-上瘾入骨i 2021-01-25 09:03

I view the other post but I found nothing, I\'m on since 3 days :

I want display 3 \'evenements\' in the order ASC but 2018 is always before 2017



        
3条回答
  •  渐次进展
    2021-01-25 09:39

    I resolve by problem with a SQL query :

       $queryEvent = $wpdb->get_results( 'SELECT * FROM cci_posts INNER JOIN cci_postmeta ON cci_posts.id = cci_postmeta.post_id INNER JOIN cci_term_relationships ON  cci_posts.id = cci_term_relationships.object_id WHERE cci_term_relationships.term_taxonomy_id = 4 AND cci_postmeta.meta_key = "date_de_fin" AND cci_postmeta.meta_value > 20170221 AND cci_posts.post_status = "publish" ORDER BY cci_postmeta.meta_value ASC LIMIT 3', OBJECT );
                            //$queryEvent = new WP_Query($args);
                            ?>
                            
    
                            
                            
    

提交回复
热议问题