显示元字段 PHP WP

我正在使用 Category and Taxonomy Meta Fields插件product categories.

当试图在 php 中显示此信息时,它没有出现。

$cate = get_queried_object();

$cateID = $cate->term_id;

if (function_exists('get_all_wp_terms_meta'))

   print_r( get_all_wp_terms_meta($cateID) );

}

在页面中archive-product.php,返回Array ( )


泛舟湖上清波郎朗
浏览 78回答 1
1回答

梦里花落0921

使用插件高级自定义字段在文件中archive-product.php使用:$cateID = get_queried_object(); $return = get_field('NameField', $cateID);如果使用灵活字段,请在字段设置中命名布局并使用if ( have_rows( 'NameItem', $cateID ) ) :    while ( have_rows( 'NameItem', $cateID ) ) : the_row();        if( get_row_layout() == 'NameLayout' ):            echo get_sub_field('NameFiel');         endif;    endwhile;else :
打开App,查看更多内容
随时随地看视频慕课网APP