我正在使用 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 ( )
1 回答
梦里花落0921
TA贡献1772条经验 获得超6个赞
使用插件高级自定义字段
在文件中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 :
- 1 回答
- 0 关注
- 77 浏览
添加回答
举报
0/150
提交
取消