我读过几个这样的问题(例如,this), 但没有同等的。
我WP\\u查询需要对meta\\u值执行LIKE。我的问题是,我想要的东西如下:meta\\u value like‘value%’,我无法解决。
我的代码如下:
$today = \'0702\'; /*(month and day)*/
$args = array (
\'post_type\' => \'post\',
\'posts_per_page\' => $number,
\'orderby\' => $sort_by,
\'cat\' => \'2\'
\'post_status\' => \'publish\'
\'ignore_sticky_posts\' => true,
\'meta_key\' => \'date\'
\'meta_value\' => $today,
\'meta_compare\' => \'LIKE\'
);
谢谢!!!:)