Reply To: Change the title of the blog post

#1204
livemesh
Keymaster

You can change the function to something like below to obtain the result you desire –

function mo_populate_tagline() {

    if (is_singular('post')) {

        echo '
'; echo '

The Cure

'; echo '

An eCommerce blog from the creators of Design Flu™

'; echo '
'; return; } /* Default tagline for blog */ $tagline = mo_get_theme_option('mo_blog_tagline', __('Blog', 'mo_theme')); $default_homepage_title = get_bloginfo('name') . __(' Home', 'mo_theme'); ...... .......

I utilized the code you used for the blog page to populate the title for individual posts. Hope that helps.