开发者

If I remove the wp title of my site from the admin settings, will it affect SEO?

开发者 https://www.devze.com 2023-01-24 19:41 出处:网络
I want to replace i开发者_运维问答t with a fancy logo image. I am sure most sites do this... is it ok? I would keep the title settings in admin, but change the theme so that the home page don\'t show

I want to replace i开发者_运维问答t with a fancy logo image. I am sure most sites do this... is it ok?


I would keep the title settings in admin, but change the theme so that the home page don't show the title, but has it in the HTML-title. You could also move the <h1>-title off screen using css.


It's actually a great SEO technique to utilize the page title as the main <h1> for the site (since it appears on the top of every page). If you don't want it to display, DO NOT use #headerimg h1 {display:none;} to hide it, instead try some tricky CSS like this:

#headerimg h1 {
 position: absolute;
 margin-left: -3000px;
 font-size: 1px;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消