0%

wordpress 一些推荐的插件

本文推荐一些wordprss插件

插件推荐

  • Akismet:防止垃圾评论必备
  • YOAST SEO: SEO必备
  • WP-PostViews:用于查看文章点击量
  • Hermit: 简洁的音乐插件,支持网易、虾米链接
  • MathJax-LaTeX: wordpress latex支持
  • Compress JPEG & PNG images: tinypng 出品的插件,用于将上传的图像压缩,却不影响质量
  • Crayon Syntax Highlighter: 一个代码框插件,样式漂亮。样例如下:

C++

1
2
3
4
5
#include<cstdio>
int main(){
cout << "hello world" << endl;
return 0;
}

python:

1
print 'hello world'

PS:

PHP-7.3 需要修复一下,不然会有错误,见:https://github.com/aramk/crayon-syntax-highlighter/pull/451/files

简单的说,就是把crayon_langs.class.php中下面的第一行改为第二行的内容:

1
2
preg_replace('/[^\w-+#]/msi', '', $id);
preg_replace('/[^\w\-+#]/msi', '', $id);

 

其它也还不错的插件

  • WP-Mail-SMTP: 发送邮件插件,直接用这个设置省得修改wordpress中class-phpmailer中内容
  • WP Clean Up : 用于删除每次修改文章增加的历史版本,减少数据库体积
  • WPJAM 七牛镜像存储:七牛cdn的插件,加速blog访问,也防止租用主机空间不足。(比如,我的图大部分都是存在lofter上的,这个插件可以把lofter上的外链变成七牛的链接,就不会被屏蔽了)
  • WPtouch pro :手机访问的插件
  • 多说:评论的插件,支持微博/QQ等登陆。
  • Rel Nofollow Checkbox:快速为文章的链接添加no follow
请我喝杯咖啡吧~