Answer the question
In order to leave comments, you need to log in
How to put "/" at the end of WORDPRESS CNC for headings?
Tell me how to make for categories (headings) a URL with "/" at the end, while leaving the entries without "/"?
Answer the question
In order to leave comments, you need to log in
Try adding in to functions.php file
function pcl_smart_trailingslashit($string) {
/* ensure, that there is one trailing slash */
$string = rtrim($string, '/') . '/';
/* if there is a filename extension like .html or .php, then remove the trailing slash */
if ( 0 < preg_match("#\.[^/]+/$#", $string) ) {
$string = rtrim($string, '/');
}
return $string;
}
add_filter('user_trailingslashit', 'pcl_smart_trailingslashit');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question