• 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)
  • Thread Starter fireineyes

    (@fireineyes)

    I have also tried it without the $file = basename($path); like this…

    $path = wp_title('');
    $car = ucwords($path);
    $carplus = str_replace(" ", "+", $car); // replace space with +
    echo '<h1>'.$carplus.'</h1>';

    No luck..

Viewing 1 replies (of 1 total)
  • The topic ‘How To Modify wp_title(”)’ is closed to new replies.