Thanks again @iamrizwankhan, I did setup everything, the only thing is left to figure out is how I can make the following code work: I did add the code to the functions.php file but what else do I need to do? Tt doesn’t seem to work. Sorry, I’m not great with coding but really good with HTML and CSS. and responsive design. WordPress is very new to me. However, I am learning and trying to figure things out on my own too.
add_filter(‘the_category’,’check_category’,99);
function check_category($content){
$pattern=’/\/category\//’;
$replacement=’category-‘;
preg_replace ( $pattern , $replacement , $content);
return $content;
}