获取类别管理中自定义字段的值

时间:2014-09-11 作者:Claudiu Creanga

我正在使用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\');
    }?> 
但它不起作用。

我想我需要创建一个类页面的环境。

1 个回复
SO网友:Tomás Cot

您必须使用此功能:get_post_custom_values

第一个参数是键的名称,arata_in_listare, 第二个是post id,这取决于您在哪里打电话,您可能不需要传递它。

在这个社区中,我们不支持插件,所以我向您展示了“wordpress”的方法。

结束

相关推荐

Show Pages in Categories

通过将此代码添加到函数中,我创建了category函数。php:function page_category() { register_taxonomy_for_object_type(\'category\', \'page\'); } // Add to the admin_init hook of your theme functions.php file add_action( \'init\', \'page_category\' ); 但问