12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- //处理一下seo
- //先判断是主站还是二级域名
- ?>
-
- <?php
- $sql = '';
- //读取seo
- if($type === 5){
- $sql = "select id,seo_title,seo_keywords,seo_description from ey_arctype where id=125 ";
- }else{
- $sql = "select id,seo_title,seo_keywords,seo_description from ey_arctype where id=".$typeid." ";
- }
- //var_dump($sql);
- ?>
-
- {eyou:if condition='($sql !== "")'}
- {eyou:sql sql='$sql' cachetime='3600' id='seo_cat'}
- {eyou:notempty name='$seo_cat' /}
- <?php
- $seo_title = $seo_cat['seo_title'];
- $seo_keywords = $seo_cat['seo_keywords'];
- $seo_description = $seo_cat['seo_description'];
-
- //var_dump($seo_title);
- ?>
- {/eyou:notempty}
- {/eyou:sql}
- {/eyou:if}
-
- {eyou:if condition='((int)$area_id > 0)'}
- <?php
- $sql3 = "SELECT aid,seo_title,seo_keywords,seo_description FROM ey_archives WHERE typeid=$typeid_tdk and province_id=$area_id and is_del=0 and status=1 and arcrank=0";
- ?>
- {eyou:sql sql='$sql3' cachetime='3600' id='seo_cat2'}
- {eyou:notempty name='$seo_cat2' /}
- <?php
- $seo_title2 = $seo_cat2['seo_title'];
- $seo_keywords2 = $seo_cat2['seo_keywords'];
- $seo_description2 = $seo_cat2['seo_description'];
- ?>
- {/eyou:notempty}
- {/eyou:sql}
- {/eyou:if}
-
- <?php
- //存在标签页
- //统一按规则 后台无可自定义
- //水利职称材料参考_水利职称业绩模板【职称网】
- //$tagid
- ?>
- {eyou:if condition='((int)$tagid > 0)'}
- {eyou:sql sql='select aid,title from ey_archives where aid=$tagid' cachetime='3600' empty='' id="tag"}
- {eyou:assign name='tag_name' value='$tag["title"]' /}
- <?php
- $seo_title2 = '';
- $seo_title = $tag_name.'材料参考_'.$tag_name.'业绩模板【职称网】';
- $seo_keywords = $tag_name."材料参考,".$tag_name."业绩模板";
- $seo_description = $tag_name."材料参考首选【职称网】最受欢迎的职称评审网站,专注工程师职称评审,提供".$tag_name."业绩模板参考、职称申报、职称论文专利等一站式服务,职称评审绿色便捷通道。";
- ?>
- {/eyou:sql}
- {eyou:else /}
-
- {/eyou:if}
|