home

Tags

wordpress seo你的标题 title

May 3rd, 2008

对于 Title,把模板中 header.php 文件中显示 title 的代码修改为:

  1. <title><?php if (is_single() || is_page() || is_archive()) { ?><?php wp_title('',true); ?> | <?php } bloginfo('name'); ?> </title>

更详细地描述清参考这篇日志:WordPress 2.3 SEO 优化

对于 Keywords 和 Description,在 WordPress 2.3 中其实很好处理的

[more…]

Page Title

October 30th, 2006

….

[more…]

Page Title wordpress seo

July 15th, 2006

Now, this will involve some editing to your template files, which is normally called “header.php”. Find this:

  1. <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

and replace with:

  1. <title><?php wp_title(' '); ?><?php if(wp_title(' ', false)) { echo ''; } ?><?php bloginfo('name'); ?></title>