Editing the <title> element in WordPress
Tags: title, wordpress
Date: 29th October, 2009
I wanted to remove the funny arrow symbol which displays by default when you request the post title using the wp_title tag.
There are actually three parameters available with this tag, and it is the first one which deals with what I was after. Simply setting that blank is enough. Here’s the final element:
<title><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?></title>