發(fā)表日期:2017-07 文章編輯:小燈 瀏覽次數(shù):1390
織夢在發(fā)表文章時,你會發(fā)現(xiàn)有一個副欄目的功能.比如一個文章,他可能即屬于你的科技欄目,也屬于互聯(lián)網(wǎng)欄目,那你在發(fā)表這個文章時,主欄目可以選擇科技,副欄目可以在互聯(lián)網(wǎng)上打勾選定.
文章的副欄目保存在數(shù)據(jù)庫表archives中的typeid2這個字段中.
效果圖.文章屬于商會.及德商文化等.三個欄目.我里在欄目顯示出來.點擊鏈接后,就會進入相關(guān)的欄目中.這里是js函數(shù)的形式.只作案例演示.
模板標(biāo)簽代碼為view plaincop
{dede:arclist row='2' titlelen='100'typeid=2 orderby='id' }<span><ahref="javascript:"onclick="javascript:change_tab([field:typeid/]);">[field:typename/]</a><!-- 上面是文章所屬的主欄目,很方便調(diào)用. -->[field:typeid2 function="get_url_by_typeid2(@me)"/]<!-- 上面是文章所屬的副欄目,需要單獨寫函數(shù)get_url_by_typeid2 --></span>{/dede:arclist} |
函數(shù)代碼,需要增加在\include\extend.func.PHP中
//得到副欄目信息,并組織字符串function get_url_by_typeid2($typeid2){$arrs=explode(",",$typeid2);//解析副欄目字段if($typeid2==0){return '';}else{$url='';foreach($arrs as $v){$url.='<a href="javascript:"onclick="javascript:change_tab('.$v.');">'.get_typename($v).'</a>';}return $url;}}//織夢根據(jù)欄目編號typeid調(diào)用typename欄目名function get_typename($typeid){global $dsql;$rs=$dsql->getOne("select typename from arctype where id='$typeid'");return $rs['typename'];} |
需要修改系統(tǒng)文件./include/taglib/arclist.lib.php
295到296行修改
原代碼view plaincopy
if($CrossID=='') $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).')';else $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).','.$CrossID.')'; |
if($CrossID=='')$orwheres[] = " (arc.typeid in (".GetSonIds($typeid).") or arc.typeid2 in (".GetSonIds($typeid).") or CONCAT( ',', arc.typeid2, ',' ) LIKE '%,".$typeid.",%' )";else$orwheres[] = " (arc.typeid in (".GetSonIds($typeid).",".$CrossID.") or arc.typeid2 in (".GetSonIds($typeid).",".$CrossID.") or CONCAT( ',', arc.typeid2, ',' ) LIKE '%,".$typeid.",%')"; |
日期:2018-10 瀏覽次數(shù):3628
日期:2018-10 瀏覽次數(shù):3367
日期:2018-08 瀏覽次數(shù):3414
日期:2018-06 瀏覽次數(shù):3218
日期:2018-06 瀏覽次數(shù):3065
日期:2018-06 瀏覽次數(shù):3114
日期:2018-06 瀏覽次數(shù):3380
日期:2018-06 瀏覽次數(shù):3218
日期:2018-06 瀏覽次數(shù):3132
日期:2018-06 瀏覽次數(shù):3320
日期:2018-05 瀏覽次數(shù):3223
日期:2018-05 瀏覽次數(shù):4014
日期:2018-05 瀏覽次數(shù):3139
日期:2018-05 瀏覽次數(shù):3537
日期:2018-04 瀏覽次數(shù):4003
日期:2018-03 瀏覽次數(shù):3136
日期:2018-03 瀏覽次數(shù):3019
日期:2018-03 瀏覽次數(shù):3213
日期:2018-02 瀏覽次數(shù):3211
日期:2018-02 瀏覽次數(shù):3172
日期:2017-12 瀏覽次數(shù):3307
日期:2017-12 瀏覽次數(shù):3516
日期:2017-12 瀏覽次數(shù):3695
日期:2017-12 瀏覽次數(shù):3113
日期:2017-12 瀏覽次數(shù):3085
日期:2017-11 瀏覽次數(shù):3133
日期:2017-11 瀏覽次數(shù):3198
日期:2017-11 瀏覽次數(shù):3089
日期:2017-11 瀏覽次數(shù):3222
日期:2017-11 瀏覽次數(shù):3801
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.