站点更新日志 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