WordPress 移除文章内容页TAG 标签
有些时候我们制作特简易主题的时候需要移除文章标签,那怎么办呢?很简单,在你当前使用主题的 functions.php 文件中}符号之前,加入以下代码:
/**
* 移除文章(post)的标签(post_tag)分类法
* Copyright © 灵异派 www.lypai.net
* Version: 1.0
*/
add_action( 'init', function () {
if ( taxonomy_exists( 'post_tag' ) && post_type_exists( 'post' ) ) {
unregister_taxonomy_for_object_type( 'post_tag', 'post' );
}
}, 20 );








《WordPress 移除文章内容页TAG 标签》留言数:0