Change the output of wp_title()
Take a look in header.php of your theme. Some themes have the title output like this: <title><?php wp_title(‘|’, true, ‘right’); ?> | <?php echo get_bloginfo(‘name’) ?></title> So you’ll have to remove the | <?php echo get_bloginfo(‘name’) ?> part. However you should keep the title of the site in the <title> for SEO purposes.