WordPress:如何从自定义分类中获取自定义字段值?

时间:2017-03-24 13:39:35

标签: wordpress custom-taxonomy

我有自定义分类“新闻类别”。此自定义分类法具有自定义文本字段“类别信息”。

如何在post循环中获取该字段“Category info”的值?

1 个答案:

答案 0 :(得分:0)

如果您在选项表中保存了自定义字段,则可以像这样检索它:

$options = get_option( 'category_info' );
echo $options[$taxonomy->term_id];

或者,如果您使用的是ACF,则可以像这样检索自定义字段:

<?php

// load all 'category' terms for the post
$terms = get_the_terms( get_the_ID(), 'category');


// we will use the first term to load ACF data from
if( !empty($terms) ) {

    $term = array_pop($terms);

    $custom_field = get_field('category_image', $term );

    // do something with $custom_field
}

?>