我想动态制作doctors_category部分。请看看我的查询。我为写类别名称创建了一个自定义字段。当我写一个类别名称,然后在页面上显示那些类别帖子。
<?php $doctors_list = new WP_Query(array(
'post_type'=>'doctor',
'posts_per_page'=> -1,
'order'=>'ASC',
'doctors_category'=> $doctor_cat
));
$unique = "_doctor_";
$doctor_cat= get_post_meta(get_the_ID(),'depertment_cat',true);
?>
我尝试了这个查询,但没有工作。所以请有人帮助我。 感谢
答案 0 :(得分:2)
Try this,
<?php
$doctor_cat= get_post_meta(get_the_ID(),'depertment_cat',true);
$doctors_list = new WP_Query(array(
'post_type'=>'doctor',
'posts_per_page'=> -1,
'order'=>'ASC',
'category'=> $doctor_cat
));
?>