説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

city.htm 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. //查询城市是否 自定义
  3. $sql = "select id,seo_title,seo_keywords,seo_description from ey_citysite where domain='".$city_domain."' ";
  4. ?>
  5. {eyou:sql sql='$sql' cachetime='3600' id='seo_cat'}
  6. {eyou:notempty name='$seo_cat' /}
  7. {eyou:assign name='cityid' value="$seo_cat.id" /}
  8. {eyou:php}
  9. $seo_title = $seo_cat['seo_title'];
  10. $seo_keywords = $seo_cat['seo_keywords'];
  11. $seo_description = $seo_cat['seo_description'];
  12. {/eyou:php}
  13. {/eyou:notempty}
  14. {/eyou:sql}
  15. {eyou:if condition='(empty($seo_title) && isset($seo_title))'}
  16. <?php
  17. //一定存在省 二级域名
  18. $area_name = '';
  19. $sql2 = "SELECT id,name FROM ey_citysite WHERE domain = '".$site."'";
  20. ?>
  21. {eyou:sql sql='$sql2' cachetime='3600' id='area'}
  22. {eyou:php}
  23. $area_name = ''.$area['name'].'';
  24. $area_id = ''.$area['id'].'';
  25. {/eyou:php}
  26. {/eyou:sql}
  27. <?php
  28. if($site == "www"){
  29. $sql1 = "SELECT aid,seo_title,seo_keywords,seo_description FROM ey_archives WHERE typeid=139 and province_id=5290 and is_del=0 and status=1 and arcrank=0";
  30. }else{
  31. //查询默认设置 市级入口 栏目id139 的内容管理
  32. $sql1 = "SELECT aid,seo_title,seo_keywords,seo_description FROM ey_archives WHERE typeid=139 and province_id=$area_id and is_del=0 and status=1 and arcrank=0";
  33. }
  34. ?>
  35. {eyou:sql sql='$sql1' cachetime='3600' id='seo_cat2'}
  36. {eyou:notempty name='$seo_cat2' /}
  37. {eyou:php}
  38. $seo_title = $seo_cat2['seo_title'];
  39. $seo_keywords = $seo_cat2['seo_keywords'];
  40. $seo_description = $seo_cat2['seo_description'];
  41. {/eyou:php}
  42. {/eyou:notempty}
  43. {/eyou:sql}
  44. {eyou:else /}
  45. {/eyou:if}