用于自定义分类法的 Wordpress get_the_terms
Posted
技术标签:
【中文标题】用于自定义分类法的 Wordpress get_the_terms【英文标题】:Wordpress get_the_terms for custom Taxonomy 【发布时间】:2018-02-28 14:32:49 【问题描述】:在存档页面中,我试图显示自定义分类(称为位置)以及每个帖子标题、类别和标签。我无法让“get_the_terms”工作。
帖子标题、类别和标签运行良好。分类法不起作用。
<div class="post-listing">
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p><?php foreach((get_the_category()) as $category) echo $category->cat_name . ' '; ?></p>
<p><?php $tags = get_the_tags(); foreach($tags as $tag) echo "$tag->name"; ?></p>
<p><?php $terms = get_the_terms( 'locations' ); foreach($terms as $term) echo "$term->name"; ?></p>
</div>
这是我的functions.php代码。
//hook into the init action and call create_locations_nonhierarchical_taxonomy when it fires
add_action( 'init', 'create_locations_nonhierarchical_taxonomy', 0 );
function create_locations_nonhierarchical_taxonomy()
// Labels part for the GUI
$labels = array(
'name' => _x( 'Locations', 'taxonomy general name' ),
'singular_name' => _x( 'Location', 'taxonomy singular name' ),
'search_items' => __( 'Search Locations' ),
'popular_items' => __( 'Popular Locations' ),
'all_items' => __( 'All Locations' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Location' ),
'update_item' => __( 'Update Location' ),
'add_new_item' => __( 'Add New Location' ),
'new_item_name' => __( 'New Location Name' ),
'separate_items_with_commas' => __( 'Separate locations with commas' ),
'add_or_remove_items' => __( 'Add or remove locations' ),
'choose_from_most_used' => __( 'Choose from the most used locations' ),
'menu_name' => __( 'Locations' ),
);
// Now register the non-hierarchical taxonomy like tag
register_taxonomy('locations','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'location' ),
));
有什么想法吗?快把我逼疯了!
【问题讨论】:
get_the_terms()
需要一个帖子 ID 作为第一个参数。我想你的意思是改用get_terms()
【参考方案1】:
get_the_terms 函数有两个参数。它们是 $post 和 $taxonomy。与其他“get_the_xxxx”函数可以跳过循环内的 $post(post 对象或 post ID)参数不同,您必须将 post object 或 post ID 添加到第一个参数。
我觉得你应该写
$terms = get_the_terms( $post, 'locations' );
而不是
$terms = get_the_terms( 'locations' );
文档:https://developer.wordpress.org/reference/functions/get_the_terms/
【讨论】:
以上是关于用于自定义分类法的 Wordpress get_the_terms的主要内容,如果未能解决你的问题,请参考以下文章