ACF显示分类图像字段

时间:2015-05-16 作者:JPL

我尝试了以下方法,但它似乎没有在分类中显示图像。

<?php if(get_field(\'my_image\', \'album_category\') ): ?>

    <img src="<?php the_field(\'my_image\',\'album_category\'); ?>"  />

<?php endif; ?>
以及

$ac_image= get_field(\'my_image\', \'album_category\');

echo \'<img src="\' .$ac_image. \'">\';

1 个回复
SO网友:JPL

似乎我需要在显示字段之前找到术语id

$terms = get_the_terms( get_the_ID(), \'album_category\');

http://www.advancedcustomfields.com/resources/get-values-from-a-taxonomy-term/

结束

相关推荐

ACF显示分类图像字段 - 小码农CODE - 行之有效找到问题解决它

ACF显示分类图像字段

时间:2015-05-16 作者:JPL

我尝试了以下方法,但它似乎没有在分类中显示图像。

<?php if(get_field(\'my_image\', \'album_category\') ): ?>

    <img src="<?php the_field(\'my_image\',\'album_category\'); ?>"  />

<?php endif; ?>
以及

$ac_image= get_field(\'my_image\', \'album_category\');

echo \'<img src="\' .$ac_image. \'">\';

1 个回复
SO网友:JPL

似乎我需要在显示字段之前找到术语id

$terms = get_the_terms( get_the_ID(), \'album_category\');

http://www.advancedcustomfields.com/resources/get-values-from-a-taxonomy-term/

相关推荐