WP-重命名自定义post类型和分类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WP-重命名自定义post类型和分类相关的知识,希望对你有一定的参考价值。

Use below SQL code and replace references within the theme files.
  1. SQL query for renaming the posts:
  2.  
  3. UPDATE `wp_posts` SET `post_type` = '<new post type name>' WHERE `post_type` = '<old post type name>';
  4. SQL query for renaming taxonomy:
  5.  
  6. UPDATE `wp_term_taxonomy` SET `taxonomy` = '<new taxonomy name>' WHERE `taxonomy` = '<old taxonomy name>';

以上是关于WP-重命名自定义post类型和分类的主要内容,如果未能解决你的问题,请参考以下文章

WP-突出显示导航项,用于自定义post类型存档和单个

Wordpress:使用 wp_insert_post() 填充自定义帖子类型字段

查询ACF在自定义分类模板中的WP_Query期间发布对象

在自定义分类模板中的 WP_Query 期间查询(2)ACF 发布对象

WordPress使用自定义文章类型实现任意模板的方法和怎么做邮件回复

CPT(自定义Post类型)提要短代码