我使用高级自定义字段插件非常适合在帖子或类别中添加其他字段,但我找不到向get_categories函数添加参数的解决方案。
我想显示一个child_of = X的类别列表,特定的自定义字段必须等于Y,但我的代码显示所有的孩子......
foreach(get_categories('child_of=4') as $category) {
// Get the icon in a variable
$my_icon = get_cat_icon('echo=false&cat='.$category->cat_ID);
// Display a list with icons and the category names
$value = get_field('ligue');
// Get value of ligue
if ($value == 1) {
echo '<div class="contentmenupage"><a href="'.get_category_link($category->cat_ID).'">'.$my_icon.'</a><br> <a href="'.get_category_link($category->cat_ID).'" title="'.$category->description.'">'.$category->cat_name.'</a><p>'.get_field('fondation', 'category_' . $category->cat_ID ).'<br>'.get_field('stade', 'category_' . $category->cat_ID ).'<br>'.get_field('couleurs', 'category_' . $category->cat_ID ).'<p></div>';
}
}
非常感谢你的帮助!
答案 0 :(得分:0)
$value = get_field('ligue');
您没有输入参数$ category-&gt; cat_ID
查看http://www.advancedcustomfields.com/resources/functions/get_field/了解详情。
应该是这样的:
$value = get_field('ligue', $category->cat_ID);