我正在使用cfs-custom-category-fields 插件。
在他们的文档中指出,要获取类别中自定义字段的值,应该使用CfsTaxonomy::get(\'field_name\')
当我在一个分类页面中时,这很有效,比如category-24.php
.
但它在index.php
.
如何在非类别页面中获取值?我试过这样的方法:
$cat_id = 29;
if($cat_id=29){
echo CfsTaxonomy::get(\'arata_in_listare\');
}?>
但它不起作用。
我想我需要创建一个类页面的环境。