要按自定义字段查询帖子,可以使用“meta\\u query”参数
<?php
$args = array(
\'post_type\' => \'payment\',
\'meta_query\' => array(
array(
\'key\' => \'bookingref\',
\'value\' => \'the_value_you_want\',
\'compare\' => \'LIKE\'
),
array(
\'key\' => \'customerref\',
\'value\' => \'the_value_you_want\',
\'compare\' => \'LIKE\'
)
);
query_posts($args); while (have_posts()) : the_post(); ?>
您不能在查询中使用get\\u post\\u meta,因为它获取的是值而不是键,而且它还接受一个post ID来获取该值,并且在查询$post->ID不在范围内之前。