Emlog前台模版预览功能-站长杂谈下载

Emlog前台模版预览功能

来自版块: 站长杂谈发表于: 2015-8-17 10:21:42
50292
0
如本资源下载地址失效,请点击此处进行反馈
开通本站Svip会员,全站资源免费下
  修改方法如下:
./index.php文件
  将
  1. define('TEMPLATE_PATH', TPLS_PATH.Option::get('nonce_templet').'/'); //前台模板路径
复制代码
  改为:
  1. define('TEMPLATE_PATH', EMLOG_ROOT.'/content/templates/' . $theme . '/'); //前台模板路径
复制代码
./init.php文件
  在开头的注释语句后面加入以下代码:
  1. //前台更换模板
    . o+ J8 D2 U: w9 {/ n& j- l% L$ a
  2. //演示地址形如:http://emlog8.sinaapp.com/?theme=default- s' f( K( ~0 d1 x
  3. if(isset($_GET['theme'])){7 I1 Q: M7 `) `- J
  4.     if ($_GET['theme']==$_COOKIE['theme']){
    0 {% @0 ~1 B6 _: }
  5.         $theme = $_COOKIE['theme'];  r* W& ~# m8 u
  6.     }else{, n$ R' F$ f) }, b( b
  7.         setrawcookie("theme", $_GET['theme'], time()+360000);
    : f- Z' G/ J/ ^' D
  8.         $theme = $_GET['theme'];: k' _. t" A+ S; M  u% M& x
  9.     }
    9 O, [3 Z% y8 B, G( r" P
  10. }else{
    1 k3 u7 v% ]" `7 @" s4 \3 t
  11.     if (isset($_COOKIE["theme"])){
    ! W' d+ G( H5 V( Q4 t
  12.         $theme = $_COOKIE['theme'];; M# l5 C/ G  s8 B
  13.     }else{
    % e6 }4 ?; n- P
  14.         $theme = "Slide-T"; //默认使用的模板目录
    8 w3 _, \$ Z+ i; U2 o
  15.     }0 V( }0 N: S+ d
  16. }
复制代码
  同时将
  1. //前台模板URL
    0 C  O# Y* U6 Q& ?: L
  2. define('TEMPLATE_URL',  TPLS_URL.Option::get('nonce_templet').'/');
复制代码
  改为:
  1. //前台模板URL
    + `) G: n0 d) H. l8 @/ j
  2. define('TEMPLATE_URL',  BLOG_URL.'/content/templates/' . $theme . '/');
复制代码
./t/index.php文件
  将:
  1. define('TEMPLATE_PATH', TPLS_PATH.Option::get('nonce_templet').'/');//前台模板路径
复制代码
  改为:
  1. 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

全部评论 0

您需要登录后才可以回帖 立即登录
登录
0
0
0
返回顶部