站点更新日志 v1.3

下面是用到的用户和权限管理的插件。

1. WordPress Access Control

文章权限的管理

这是目前为止找到的最好的权限控制的插件了。还得费点脑子总结一下。

这个插件提供了比较全面的针对内容的控制模式:

  1. a. 可将全站设为登录可访问
  2. b. 对特定文章/页面的访问权限设置
  3. c. 对搜索内容的访问权限设置 
  4. d. 对文章内某一部分的登录可读 

同时,对不同的访问者类型,也有详细的访问权限划分,这样的话,给自己看的和给GG看的还有给爸爸妈妈看的东西就不会跑到上面来了,嘿嘿: 继续阅读站点更新日志 v1.3

站点更新日志 v1.2

博客和SNS类网站的连接

由 ‘wordpress连接微博’插件实现。

1. 同步日志更新到微博(twitter、腾讯、新浪、人人、豆瓣、饭否)。
2. 同步到新浪、QZone
3. 访问者可以用新浪、腾讯等账号登陆,并且同步评论到微博
4. 常见的分享功能

该插件算是把与SNS网站的互动做到不错了。

 

显示SNS动态(siderbar)

1.新浪微博 继续阅读站点更新日志 v1.2

站点更新日志 v1.1

Mystique算是一个相当强大又略复杂的主题,这天花了点时间琢磨一下。

首先,增添了访问记录功能,并修改页脚信息(针对Mystique 3)。

1. 注册并登录CNZZ等网站流量统计提供商,获取js代码,如

[cce_js]<script type="text/javascript" language="JavaScript" src="http://s16.cnzz.com/stat.php?id=xxxxxxxx&amp;web_id=xxxxxxxx&amp;show=pic1"></script>[/cce_js]

2. 外观下点’编辑’,并在模板中选择shortcodes.php文件,有如下代码:

[cce_php]
// register our shortcodes
add_shortcode('link',            'atom_shortcode_link');
add_shortcode('column',          'atom_shortcode_column');
add_shortcode('widget',          'atom_shortcode_widget');
add_shortcode('query',           'atom_shortcode_query');
add_shortcode('member',          'atom_shortcode_member');
add_shortcode('visitor',         'atom_shortcode_visitor');
add_shortcode('tinyurl',         'atom_shortcode_tinyurl');
add_shortcode('pagerank',        'atom_shortcode_pagerank');
add_shortcode('subs',            'atom_shortcode_subs');
add_shortcode('credit',          'atom_shortcode_credit');
add_shortcode('copyright',       'atom_shortcode_copyright');
add_shortcode('load',            'atom_shortcode_load');
add_shortcode('field',           'atom_shortcode_field');
add_shortcode('themeauthor',     'atom_shortcode_themeauthor');
[/cce_php]

在其后添加: 继续阅读站点更新日志 v1.1