由于网站栏目多次需要调用同一栏目下的栏目比如顶级栏目6 下级栏目5.4.3.2.1 需要分两次分别调出543和21 感觉channel就比较吃力了全部写SQL又太多,可能是我还不知道有其他方法吧。row调用不出这种效果所以就把row改为了Limit用法了比较方便 修改文件includetaglib/下面的channel.lib.php 在函数lib_channel里面加上
02 |
$limit = trim(eregi_replace( 'limit' , '' ,$limit)); |
03 |
if ($limit!= '' ) $limitsql = " limit $limit " ; |
04 |
else $limitsql = " limit 0,7 " ; |
07 |
if (isset($orwheres[0])) { |
08 |
$orwhere = join ( ' And ' ,$orwheres); |
09 |
$orwhere = ereg_replace( "^ And" , '' ,$orwhere); |
10 |
$orwhere = ereg_replace( "And[ ]{1,}And" , 'And ' ,$orwhere); |
12 |
if ($orwhere!= '' ) $orwhere = " where $orwhere " ;//二次开发 |
|
——————————————————————————–
把上面的代码,添加到函数lib_channel(具体位置为:)
1 |
function lib_channel(&$ctag,&$refObj) |
5 |
$attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|" ; |
6 |
FillAttsDefault($ctag->CAttribute->Items,$attlist); |
7 |
extract($ctag->CAttribute->Items, EXTR_SKIP); |
8 |
$innertext = $ctag->GetInnerText(); |
9 |
$line = empty($row) ? 100 : $row; |
|
———————————————————-
这段代码后面
所有查询条件的limit 0,$row改为$limitsql OK 保存
本站资源均来源于网络或网友投稿,部分资源未经测试,难免存在BUG,所有资源只限于学习研究,不得商用。如使用本站下载的资源造成任何损失或发生侵权行为,均与本站无关。如不接受本声明请勿下载!本站资源如有侵权,请联系QQ:497149677核实后立即删除!
最客资源网 »
织梦dede拓展channel标签实现limit功能