如何在存档页面中显示分类自定义元框数据?

时间:2017-04-05 作者:jone hans

我正在使用CMB2插件在自定义分类法中创建自定义元框。我在分类法中添加了字段。但问题是,当我要在归档模板中显示该数据时,它似乎是空白的。这是我的密码。

<?php $name = get_post_meta( get_the_ID(), \'game_name\', true ); ?>
<h1><?php echo esc_html( $name ); ?></h1>
现在,您能告诉我如何在归档页面中显示分类法中的元数据吗?

谢谢

1 个回复
SO网友:mmm

尝试get_the_terms 这样做
https://developer.wordpress.org/reference/functions/get_the_terms/

<?php $listeNoms = get_the_terms( get_the_ID(), \'game_name\'); ?>
<h1>
    <?php foreach ($listeNoms as $name) {?>
        <?php echo esc_html($name);?>
    <?php }?>
</h1>

相关推荐

什么时候应该/不应该使用wp_get_post_Terms与Get_the_Terms?

一位用户在codex中提供了一条注释,指出唯一的区别是get\\u术语使用缓存的数据,我已经知道wp\\u get\\u post\\u术语可以让您通过slug检索数据,但我仍然想知道使用其中一个与另一个的最佳情况是什么。