wordpress seo你的标题 title
对于 Title,把模板中 header.php 文件中显示 title 的代码修改为:
- <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 中其实很好处理的
对于重复内容,其实只要在 header.php 中加入这一段代码即可:
- <?php if (is_single() || is_page() || is_home() ) : ?><meta name="robots" content="index,follow" /><?php else : ?><meta name="robots" content="noindex,follow" /><?php endif; ?>
你可以根据自己的要求作适当调整上面的代码。
Created By: sb123
Form Page: wordpress seo你的标题 title
