码迷,mamicode.com
首页 > 其他好文 > 详细

Wordpress 自定义文章类型添加 Categoried、Tags

时间:2019-01-15 15:48:05      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:com   pre   tag   链接   eve   add   技术   来源   custom   

默认情况下 ,自定义文章类型没有分类和标签属性,需要通过 register_taxonomy_for_object_type 手动注册文章分类和标签,可以通过在 functions.php 或插件中添加如下代码:

 

add_action( ‘init‘, ‘sk_add_category_taxonomy_to_events‘ );
/**
 * Link `e4gf_events` CPT to categories and tags taxonomies
 */
function sk_add_category_taxonomy_to_events() {
    register_taxonomy_for_object_type( ‘category‘, ‘e4gf_events‘ );
    register_taxonomy_for_object_type( ‘post_tag‘, ‘e4gf_events‘ );
}

e4gf_events 为文章类型

 

技术分享图片

 

效果如下:

 技术分享图片

 

 

资料来源链接:

https://sridharkatakam.com/adding-categories-support-to-a-custom-post-type-in-wordpress/

Wordpress 自定义文章类型添加 Categoried、Tags

标签:com   pre   tag   链接   eve   add   技术   来源   custom   

原文地址:https://www.cnblogs.com/ryanzheng/p/10271750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!