ACF中自定义帖子类型的自定义位置规则

时间:2015-04-13 13:10:31

标签: wordpress advanced-custom-fields

我已经下载了WordPress的ACF插件,我正在尝试添加自定义位置规则。

我要做的是让它检测自定义帖子类型中使用的类别。在本例中,我安装了WP-Knowledgebase插件,该插件使用知识库的自定义帖子类型。

有谁知道如何让ACF在我的规则中使用此类别?

1 个答案:

答案 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; 
?>