最简单轻量方法去除wordpress category
去除category方法很多:
1、wp后台去除固定链接前缀
2、安装插件 WP No Category Base 去除
3、代码去除
这里推荐代码去除,将以下代码粘贴到主题文件function.php里即可。
// Remove category function remove_category( $string, $type ) { if ( $type != 'single' && $type == 'category' && ( strpos( $string, 'category' ) !== false ) ){ $url_without_category = str_replace( "/category/", "/", $string ); return trailingslashit( $url_without_category ); } return $string; } add_filter( 'user_trailingslashit', 'remove_category', 100, 2);
个人博客:http://www.qbeee.cn