我需要根据分类法从自定义帖子类型中获取页面模板中的值。
在我的项目中,我有四个分类,如中国,日本,新加坡,马来西亚
每个分类都有单独的值
需要相应地检索数据。
例如:
中国:
Name1
address1
Name2
address2
马来西亚:
Name1
address1
Name2
address2
等等。
请为此提出一些建议。 感谢。
答案 0 :(得分:0)
这将循环播放“国家/地区”的自定义帖子类型。标有" china"。
// WP_Query Arguments
$args = array (
'post_type' => array( 'country' ),
'tag_id' => 'china',
);
// The Query
$query = new WP_Query($args);
// The Loop
while ( have_posts() ) : the_post();
echo '<h1>'.the_title().'</h1>';
echo $customField[1];
echo $customField[2];
endwhile;
// Reset Query
wp_reset_query();