最简单轻量方法去除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);

 

posted @ 2022-10-07 10:58  贵隆  阅读(342)  评论(0编辑  收藏  举报