1、安装设置相关插件
Akismet
Baidu Sitemap Generator
cos-html-cache
Dagon Design Sitemap Generator
Google XML Sitemaps
WordPress Related Posts
2、Timezone设置为singapore
3、屏蔽日志修订功能
倒数第二行define语句后加上:
/** 屏蔽日志修订功能 */
define(‘WP_POST_REVISIONS’, false);
4、重写博客robots文件
User-agent: *
Disallow: /page/
Disallow: /feed/
Disallow: /blog/author/admin/
Disallow: /blog/2012/
Disallow: /blog/2013/
Sitemap: http://fatalist.biz/sitemap.xml.gz
5、修改header.php
这里设置网站的标题和描述内容,还有发布单篇文章时可以在excerpt中加上这篇文章的搜索引擎描述内容。
6、取消评论功能
settings-discussion-把 Allow people to post comments on new articles 前的勾去掉
7、建立关于页面
8、more链接修改
把wp-includes目录下post-template.php文件
里的#more-{$post->ID}\改为:\(没有:号) 阅读全文…