Thanks for your reply. In my header.php, I see:
<le><?php if (is_home () ) { bloginfo(‘name’); } elseif ( is_category() ) { single_cat_title(); echo ‘ – ‘ ; bloginfo(‘name’); } elseif (is_single() ) { single_post_title(); } elseif (is_page() ) { bloginfo(‘name’); echo ‘: ‘; single_post_title(); } else { wp_title(”,true); } ?></title>
Basically, I just copied the entire section that has the words “post,” which is only twice. If I want to name this post to show up in the search results, can you tell me where to name it? Thanks