Support Forums for LiveMesh Themes & Plugins › Forums › Enigmatic Theme Support › Change the title of the blog post › Reply To: Change the title of the blog post
July 22, 2013 at 7:53 am
#1204
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 ''; 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'); ...... .......The Cure
'; echo 'An eCommerce blog from the creators of Design Flu™
'; echo '
I utilized the code you used for the blog page to populate the title for individual posts. Hope that helps.