Thread Starter
taxumi
(@taxumi)
Hi Benjamin,
This is the one I need to achieve. Could you please have a complete code? Sorry I’m a non-developer.
Thanks a lot for your support.
function sp_titles_title($html) {
$html = strtoupper($html);
return $html;
}
add_filter('seopress_titles_title', 'sp_titles_title');
Paste this snippet to your functions.php file of your child theme / theme.
Replace strtoupper
by ucwords
if you just want to uppercase the first letter of each words.
Thread Starter
taxumi
(@taxumi)
Thank you very much for your kind support.