Mayby somebody know how to edit code below to get work in 2.7
<?php
function seocategorydel($catlink1) {
$catlink1 = str_replace(‘/category’, ”, $catlink1);
return $catlink1;
}
add_filter(‘category_link’, ‘seocategorydel’, 1, 1);
?>
or this one
<?php
//-> Remove “category/” from the URL string
function kill_category_base($string) {
$string = str_replace(‘category/’, ”, $string);
return $string;
}
add_filter(‘category_link’, ‘kill_category_base’);
?>