最近刚好有位朋友用WordPress建站,想去掉分类URL永久链接中的category

查找了下资料,找到了个算比较简单的方法,记录下

打开wp-includes文件夹中的category-template.php

查找以下代码
$catlink = get_option( ‘home’ ) . user_trailingslashit( $catlink, ‘category’ );

其后面加上:

$catlink = str_replace(‘/category’, “”, $catlink);