For example here is a blog with Blog Title as "P Answer" and a blog Post Title "Change Blog Title with Post Title"
By default, the Post title appears like this:
P Answer: Change Blog Title with Post Title
But, after you followed this trick, the title will look like this
Change Blog Title with Post Title | P Answer
The second title looks better as the subject matter of the blog post. This is also good for search engine optimization. So, if you want to know how to change the blog title with the post title, just follow the steps below.
1. Log in to your blogger account
2. Go to Design --> Edit HTML
3. Find this code
<title><data:blog.title/></title>
What? If you didn't find that code, try to find this code
<title><data:blog.pageTitle/></title>
4. Then, replace one of the code above, with code below.
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>
0 Comments