Forum Moderators: coopster
<?php if(the_title() == 'Wrong Title')
{
echo $this->__('Good Title');
}
else
{
the_title();
}
?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } elseif (get_the_title()=="Wrong Title") { ?>
<h1 class="entry-title"><?php echo 'Good Title'; ?></h1>
<?php } else { (get_the_title()!= "Wrong Title") ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>