html - How to remove blog name from post title in search engines -


i have blog in search engines every post show me blog name @ end of posts title. want remove blog name @ end of each post title because think it's bad idea seo. title code within template.

<b:if cond='data:blog.pagetype == "index"'>   <b:if cond='data:blog.pagetype == "item"'>     <title>       <data:blog.pagename/>       |        <data:blog.title/>     </title>     <b:else/>     <title>       <data:blog.pagetitle/>       - cad drawing library engineers     </title>   </b:if>   <b:else/>   <title>     <data:blog.pagename/>     |      <data:blog.title/>   </title> </b:if> 

use this

<b:if cond='data:blog.pagetype == "index"'>     <title>         <data:blog.title/>     </title> <b:else/>     <title>         <data:blog.pagename/>     </title> </b:if> 

Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -