Mystique算是一个相当强大又略复杂的主题,这天花了点时间琢磨一下。
首先,增添了访问记录功能,并修改页脚信息(针对Mystique 3)。
1. 注册并登录CNZZ等网站流量统计提供商,获取js代码,如
[cce_js]<script type="text/javascript" language="JavaScript" src="http://s16.cnzz.com/stat.php?id=xxxxxxxx&web_id=xxxxxxxx&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]
在其后添加:
[cce_php]add_shortcode('cnzz', 'atom_shortcode_cnzz');[/cce_php]
并在文件末尾添加:
[cce_php] /** * Blog Stats from CNZZ * example: [cnzz] * by ADaier * @return string */ function atom_shortcode_cnzz(){ return sprintf ('<script src="http://s16.cnzz.com/stat.php?id=xxxxxxxx&web_id=xxxxxxxx&show=pic1" language="JavaScript"></script>'); } [/cce_php]
3. 返回外观下的Mystique选项,点Content options
将Footer content的内容改为
[cceL_html]<p> [copyright] | [credit] | [cnzz] </p>[/cceL_html]
于是就O了。
现在的页脚显示的内容就是网站的版权信息 | 主题的版权(还是要感谢下滴) | 网站流量统计小图标(任何针对页面的访问都可以有记录了,表说我是偷窥狂哈~)
想要用Google Analytics来做页面跟踪的,还在继续尝试中。