for example when we click to see this post(Learn to see) in single page the title is Prisoner Blogger - i Want To Make $1500000 USD By Blogging Online » Blog Archive » Learn to see which is included my blog title + Blog archive + Post title But i want it Only as " Post title " when we look at it in single page
It must be a peculiarity of your WordPress theme. All those values are in the <title> tag. Can you modify the theme code? most likely it's in header.php. Change the title tag to somothing like this <title><?php if (!is_single()) { bloginfo('name'); echo(' -- ');} ?> <?php wp_title(' '); ?></title> PHP: