修改方法如下: ./index.php文件 将- define('TEMPLATE_PATH', TPLS_PATH.Option::get('nonce_templet').'/'); //前台模板路径
复制代码 改为: - define('TEMPLATE_PATH', EMLOG_ROOT.'/content/templates/' . $theme . '/'); //前台模板路径
复制代码./init.php文件 在开头的注释语句后面加入以下代码: - //前台更换模板
. o+ J8 D2 U: w9 {/ n& j- l% L$ a - //演示地址形如:http://emlog8.sinaapp.com/?theme=default- s' f( K( ~0 d1 x
- if(isset($_GET['theme'])){7 I1 Q: M7 `) `- J
- if ($_GET['theme']==$_COOKIE['theme']){
0 {% @0 ~1 B6 _: } - $theme = $_COOKIE['theme']; r* W& ~# m8 u
- }else{, n$ R' F$ f) }, b( b
- setrawcookie("theme", $_GET['theme'], time()+360000);
: f- Z' G/ J/ ^' D - $theme = $_GET['theme'];: k' _. t" A+ S; M u% M& x
- }
9 O, [3 Z% y8 B, G( r" P - }else{
1 k3 u7 v% ]" `7 @" s4 \3 t - if (isset($_COOKIE["theme"])){
! W' d+ G( H5 V( Q4 t - $theme = $_COOKIE['theme'];; M# l5 C/ G s8 B
- }else{
% e6 }4 ?; n- P - $theme = "Slide-T"; //默认使用的模板目录
8 w3 _, \$ Z+ i; U2 o - }0 V( }0 N: S+ d
- }
复制代码 同时将 - //前台模板URL
0 C O# Y* U6 Q& ?: L - define('TEMPLATE_URL', TPLS_URL.Option::get('nonce_templet').'/');
复制代码 改为: - //前台模板URL
+ `) G: n0 d) H. l8 @/ j - define('TEMPLATE_URL', BLOG_URL.'/content/templates/' . $theme . '/');
复制代码./t/index.php文件 将: - define('TEMPLATE_PATH', TPLS_PATH.Option::get('nonce_templet').'/');//前台模板路径
复制代码 改为: - define('TEMPLATE_PATH', EMLOG_ROOT.'/content/templates/' . $theme . '/');//前台模板路径
复制代码 # j% F0 S7 V1 A$ ?
- j' _9 G% o2 e- k2 N) b3 U* }1 {2 p) i
|