Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Floyd3

    (@floyd3)

    Does anyone know if this is possible? I suppose it may be more of a WordPress question rather than All in One SEO question.

    Thread Starter Floyd3

    (@floyd3)

    Am I close with the text-transform thing? I google’d the question and searched the forums but couldn’t find it.

    Thread Starter Floyd3

    (@floyd3)

    Figured it out if anyone reading this eventually might be trying to do this. Add this code to your header.php file to make the title all UPPERCASE:

    <?php
    function captitle($title) {
         $title = strtoupper($title);
         return $title;
    }
    add_filter('wp_title', 'captitle');
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: All in One SEO Pack] Using "text-transform" to make titles of all posts UPPERCASE’ is closed to new replies.