How To Modify wp_title(”)
-
I want to modify the title of the tag page to use in template for tag pages. I want to have a + symbol to replace the spaces in between tag words. Any idea how to do this? I tried this…
<? // Code for Car Part Name $path = wp_title(''); $file = basename($path); $carname = str_replace("-", " ", $file); $car = ucwords($carname); $carplus = str_replace(" ", "+", $car); // replace space with + echo '<h1>'.$carplus.'</h1>'; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How To Modify wp_title(”)’ is closed to new replies.