全局:
<?=SITE_NAME?> //网站名称
<?=$site_url?> //获取当前域名全部包含http头
<?=$theme_dir?> //此为PC模板风格文件夹名输出,对于wap标签为<?=$mtheme_dir?>
首页:
首页没啥好讲的,参考上边就行了,主要的就是输出网站名称的标签了<?=SITE_NAME?>
漫画详情页:
<?=$name?> //漫画名
<?=$bname?> //漫画别名
<?=$chapters?> //章节总数
<?=$intro_des?> //简介
<?=$author?> //作者名
<?=$isfull?> //连载状态
<?=$lastupdate?> //漫画更新时间
对于标签需要进行循环输出,示范如下:
<?php foreach($tags as $tag):?><?=$tag?><?php endforeach?>
漫画章节页:
可用上方漫画详情页标签
<?=$chaptername?> //章节名
<?=$lastupdate?> //章节更新时间
书库页面:
<?=$areatitle?> //地区选择状态
<?=$fulltitle?> //连载选择状态
<?=$paytitle?> //支付选择状态
<?=$tagtitle?> //标签选择状态
<?=$ordertitle?> //排序选择状态
<?=$page?> //页码
搜索页面:
<?=$searchkey?> //搜索关键词
<?=$search_count?> //输出结果数
评论(0)