Optimal Title functions in the exact same way as wp_title(), and thus you may specify the following options:
<?php optimal_title('separator', display); ?>
The most simple answer is to remove everything between the HTML <title></title> tags and then put the following code in its place:
<?php optimal_title(); ?> <?php bloginfo('name'); ?>
If you want a slightly safer version that won't break if you do not have the plugin activated or installed, then try something like this in between the HTML <title></title> tags:
<?php
if ( function_exists('optimal_title') ) {
optimal_title(); bloginfo('name');
} else {
bloginfo('name'); wp_title(); }
?>
<?php if ( is_home() ) { ?> | <?php bloginfo('description'); } ?>




