专题模块化改版

整    理:肖雅君

时    间:2016-03-04

说    明:专题模块化:手机端仍需前端切,PC端改用统一的模板,只需将切好的WAP端代码复制到模板里,再将css样式中的尺寸大小变成WAP端的2倍即可。(钱昱成正做成后台,后续会更新此文档。)

一、新专题步骤

1.<!doctype html>前

2.<head></head>

3.<body></body>

二、新老专题比较

1、顶部php

2、头部

3、头部以及右侧分享部分

4、右侧栏部分

5、评论模块不变

6、公共底部

 

一、新专题步骤

  1. <!doctype html>

<?php

include_once('../include/global.php');

$special_id = 10379;

$share_title = '产后抑郁,产后抑郁症,产后抑郁如何治疗.。。。 ';//分享的标题[修改]

$share_content = '新生命的降生.。。。';//分享内容[修改]

$share_pic = 'http://www.ci123.com/special/survey-yiyu/styles/images/share_pic.jpg';//分享的图片[修改]

include_once('../global/new_special/info.php');

if(isMobile()){

header("Location:http://m.ci123.com/special/survey-yiyu");//手机端专题链接[修改]

die();

}

?>

<!doctype html>

<html>

</html>

2.<head></head>

<head>

<meta charset="utf-8">

<title>惊!九成产妇有产后抑郁倾向?!</title>//专题标题[修改]

<meta name="renderer" content="webkit">

<meta http-equiv="X-UA-Compatible" content="IE=Edge">

<?php include_once('../global/new_special/share.php');?>

<link rel="stylesheet" href="styles/style_sub.css">//主要内容的样式[修改]

</head>

3.<body></body>

<body>

<?php include_once("../global/header.php");?><!--育网公共头部php-->

<div class="wrapper-special">

<div class="special-content">

<!--专题头部-->

<div class="part-content part-header">

<?php include_once('../global/new_special/part1.php');?><!--专题头部php-->

</div>

<!--专题头部-END-->

<!--右侧栏-->

<div class="part-content">

<?php include_once('../global/new_special/part2.php');?><!--右侧栏[“往期回顾+更多推荐”]php-->

</div>

<!--右侧栏-END-->

<!--左侧主体内容 -->

<div class="part-main">

<!-- 此处放主体内容 \ 此处放主体内容 \ 此处放主体内容-->

<!--左侧主体内容-END-->

</div>

</div>

</div><!—整体页面-->

<!--底部版权-->

<?php include_once('../global/new_special/footer.php');?>

<!--底部版权end-->

<div style="display:none;"><script src="http://s11.cnzz.com/stat.php?id=1257703690&web_id=1257703690" language="javascript"></script></div>//统计代码[修改]

</body>

 

二、新老专题比较

1、顶部php

原版:1-2

新版:1-3

改变内容:

(1)替换掉原来的帖子id(现在从库里取,需从后边编辑帖子那边添加)

(2)分享文案只需在开头添加

(3)需引入include_once('../global/new_special/info.php');(必须在$special_id后面引入)

2、头部

原版:1-2

新版:1-4

3、头部以及右侧分享部分

3

代码:<?php include_once('../global/new_special/part1.php');?>

4、右侧栏部分

4

代码:<?php include_once('../global/new_special/part2.php');?>

5、评论模块不变

5

引入此段代码:<?php include_once('../global/reply.php');?>

6、公共底部

6

代码:<?php include_once('../global/new_special/footer.php');?>

 

发表评论