ecshop内页关键词的实现_chunxia_新浪博客
  1. ecshop内页关键词的实现如:search.php?intro=best,flow.php,message.php的改进    
  2. 打开includes/lib_main.php  
  3. 找到函数:function assign_ur_here($cat 0, $str '')  
  4. elseif ('exchange' == $filename)  
  5.             {  
  6.                 $page_title $GLOBALS['_LANG']['exchange''_' $page_title;  
  7.                 $args       array('wsid' => '0');  
  8.                 $ur_here   .= <code>&gt;</code> <a href="exchange.php">' .  
  9.                                 $GLOBALS['_LANG']['exchange''</a>';  
  10.             }  
  11.        
  12.        
  13.       elseif ('search' == $filename)//获取当前页的地址参数...如:search.php?intro=best  得到search  
  14.             {  
  15.             $action unserialize(base64_decode(trim($_GET['encode'])));//对search.php产生的随机编码URL进行固定解码...  
  16.             $action $action['intro'];  
  17.                 if($action == 'best[L]'){//热卖类内页 如:search.php?intro=best  得到best  
  18.                     $keywords ";//这里就是您的关键词  
  19.                     $description ";//这里是您的描述       
  20.                           
  21.                   
  22.         elseif ('flow' == $filename)//获取当前页的地址参数...如:flow.php 得到flow  
  23.             {  
  24.                     $keywords "flow";//这里就是您的关键词  
  25.                     $description "flow";//这里是您的描述             
  26.             }  
  27.         elseif ('message' == $filename)//获取当前页的地址参数...如:message.php 得到message  
  28.             {  
  29.                     $keywords "message";//这里就是您的关键词  
  30.                     $description "message";//这里是您的描述             
  31.                       
  32.               
  33.      
  34.     return array('title' => $page_title'ur_here' => $ur_here,  
  35.     'keywords'=> $keywords,'description' => $description);  
  36.        
  37.        
  38.     基本上的功能已经实现,你可以在需要参数的代码中增加:  
  39.     $smarty->assign('keywords'$position['keywords']);      //页面关键词  
  40.     $smarty->assign('description',$position['description']);  // 页面描述  

 

已投稿到:
郑重声明:资讯 【ecshop内页关键词的实现_chunxia_新浪博客】由 发布,版权归原作者及其所在单位,其原创性以及文中陈述文字和内容未经(企业库qiyeku.com)证实,请读者仅作参考,并请自行核实相关内容。若本文有侵犯到您的版权, 请你提供相关证明及申请并与我们联系(qiyeku # qq.com)或【在线投诉】,我们审核后将会尽快处理。
—— 相关资讯 ——