1.空间的选择 wordpress要求 php+mysql的支持,rewrite功能,比如apache的mod-rewrite或iis rewrite。
空间的速度,Google已经明确把空间的速度列入网站排名要素之一,所以选择一个快速稳定的空间是seo的基础。
并且快速稳定的空间对 用户体验也很好.
2.WordPress 主题的选择 选择一个优秀的主题是seo的重要条件之一,有些主题本身就做了一定的seo优化,所以选择一款好的主题是 wordpress seo的基础之一。
wordpress的主题推荐选择代码简洁,div+css架构的,图片,js代码越少越好,当然并不是完全不能使用js代码和图片。
3.title 的优化 wordpress的title优化一般在主题的header.php文件中,title的写法一般是首页设置 为:关键词-关键词-关键词-网站名称。
内容页:标题-网站名称。
title的修改,如果是对php和wordpress主题函数比较熟悉 的,可以自己动手修改。
如果不懂的可以使用一些插件,比如all in seo插件,可以简单的对title进行rewrite,设置关键词和描述。
4.keyword 和description 如果使用了all in seo插件,也可以直接设置,或者使用其他类似的插件。
需要注意的是,all in seo插件对百度的支持不大好,现在使用all in seo插件设置的描述百度无法抓取。
所以中文网站做百度优化的千万不要使用all in seo插件,用了也不能设置keyword和description。还有noindex选项,千万不能选择,用了百度干死你。
小残
博客就是直接使用的在header.php头部加入一下代码
PHP Code复制内容到剪贴板
- $description = "小残博客(www.exehack.net)关注网络安全、IT行业、网络安全文章、网络资源、电脑技术、网络安全技术、网络安全知识、互联网安全知识、原创网络安全博客";
- $keywords = "关注网络安全,网站漏洞,网络安全,网络安全技术,网络安全知识,网络安全教程,黑客新闻,服务器安全,网络安全文章,系统安全";}
- elseif (is_single() || is_page()) {
- $description1 = get_post_meta($post->ID, "description", true);
- $description2 = mb_strimwidth(strip_tags(apply_filters
- ('the_content', $post->post_content)), 0, 200, "…");
- $description = $description1 ? $description1 : $description2;
- $keywords = get_post_meta($post->ID, "keywords", true);
- if($keywords == '') {
- $tags = wp_get_post_tags($post->ID);
- foreach ($tags as $tag ) {
- $keywords = $keywords . $tag->name . ", ";}
- $keywords = rtrim($keywords, ', ');}
- }
- elseif (is_category()) {
- $description = category_description();
- $keywords = single_cat_title('', false);}
- elseif (is_tag()){
- $description = tag_description();
- $keywords = single_tag_title('', false);
- }
- $description = trim(strip_tags($description));
- $keywords = trim(strip_tags($keywords));
- ?>
- <meta name="description" content="<?php echo $description; ?>" />
- <meta name="keywords" content="<?php echo $keywords; ?>" />
5. 固定链接