我已经下载了WordPress的ACF插件,我正在尝试添加自定义位置规则。
我要做的是让它检测自定义帖子类型中使用的类别。在本例中,我安装了WP-Knowledgebase插件,该插件使用知识库的自定义帖子类型。
有谁知道如何让ACF在我的规则中使用此类别?
答案 0 :(得分:0)
也许这有助于你。
在category.php
<?php
$cover = the_field('cover', 'category_'.get_queried_object_id().'');
// 'cover' is the name of custom field, replace this with yours.
echo $cover;
?>