admin管理员组文章数量:1122846
I'm using CMB2 Plugin for creating Custom Meta Box in a Custom Taxonomy. I added fields into that taxonomy. But the problem is when I'm going to display that data in archive template, It seems blank. Here is my Code.
<?php $name = get_post_meta( get_the_ID(), 'game_name', true ); ?>
<h1><?php echo esc_html( $name ); ?></h1>
Now Can you tell me how can I show meta data from a Taxonomy in an Archive page?
Thanks
I'm using CMB2 Plugin for creating Custom Meta Box in a Custom Taxonomy. I added fields into that taxonomy. But the problem is when I'm going to display that data in archive template, It seems blank. Here is my Code.
<?php $name = get_post_meta( get_the_ID(), 'game_name', true ); ?>
<h1><?php echo esc_html( $name ); ?></h1>
Now Can you tell me how can I show meta data from a Taxonomy in an Archive page?
Thanks
Share Improve this question asked Apr 5, 2017 at 20:49 jone hansjone hans 112 bronze badges 3 |2 Answers
Reset to default 1<?php $terms = get_the_terms( get_the_ID(), 'game_name'); ?>
<h1>
<?php foreach ($terms as $term) {?>
<?php echo esc_html($term->name);?>
<?php }?>
</h1>
try get_the_terms
to do that
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>
本文标签: pluginsHow to Display Taxonomy Custom Meta Box Data in Archive Page
版权声明:本文标题:plugins - How to Display Taxonomy Custom Meta Box Data in Archive Page? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736308732a1933768.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
singer
andcomposer
should be custom taxonomies andrelease year
should be post meta-data - all of these things applied to individual posts of an "album" custom post-type.cover
would then simply be the post's featured image. That way you can view an archive of albums, sort and search them by singer and composer (and view singer/composer archives), and use a meta-query to filter them by release year. – bosco Commented Apr 5, 2017 at 22:24