我想从我的wordpress使用ajax并获取信息:
首先,我可以从这个类别获得'mark'类别和字段'logo'。 (它有效)
其次是获取其他acf但不是来自类别,而是来自“提供”自定义帖子类型并且我不知道如何获得它的帖子
我的代码:
$mark = $_GET['mark'];
$categories = $_GET['category'];
$output = '';
$myquery['tax_query'] = array(
'relation' => 'AND',
array(
'taxonomy' => 'offer_category',
'terms' => array($category,
'field' => 'slug',
),
array(
'taxonomy' => 'mark_offer',
'terms' => array($mark),
'field' => 'slug',
),
);
$post = query_posts($myquery);
$query = new WP_Query( $myquery );
$ind=0;
$last = $query->post_count;
if ( $query->have_posts()) { while ( $query->have_posts()) { $query->the_post();
$ind++;
$post_fields = get_fields();
// echo get_the_title();
$myMark = wp_get_post_terms(get_the_ID(), 'mark_offer');
$markId = $myMark[0]->term_id;
$markLogo = get_field('logo', 'term_'.$markId );
答案 0 :(得分:0)
当您使用自定义帖子类型时,您需要执行以下操作:
query_posts( [
'post_type' => 'YOURTYPE', 'meta_key' => 'YOUR_CUSTOM_FIELD', 'meta_value' => 'YOUR_CUSTOM_VALUE'
] );