10個常用的eyoucms易優CMS標籤(織夢CMS遷移可用)
阿新 • • 發佈:2021-10-24
最近一個月時間我們不少的朋友都在忙著將織夢CMS遷移到其他免費或者便宜的CMS程式中。其中我們有些朋友會遷移到標籤相似的易優CMS,但是標籤還是有區別的。我們在遷移程式後需要將原有的模板主題換成新程式的標籤,當然對應的模板名稱也是需要更換的。
在這篇文章中,整理10個常用的eyoucms標籤,確保我們可以遷移到新的程式中。
基礎語法:
{eyou:tag sort='now' getall='0' row='100'}
<a href='{$field.link}'>{$field.tag}</a>(文件數:{$field.total})
{/eyou:tag}
Select Code這個和我們看到的DEDECMS是相似的。
基礎引數:
Select Code Copyaid='' 文件ID,在內容頁可以不設定該屬性 typeid='' 欄目ID,調取某個欄目下的全部TAG row='100' 返回廣告列表總數 getall='' 獲取型別,0為當前內容頁TAG標記,1為獲取全部TAG標記 type='' 選擇欄目方式 type='son' 表示下級欄目 type='self' 表示同級欄目 type='top' 表示頂級欄目 type='sonself' 表示當前下級欄目以及同級欄目 type='first' 表示當前欄目ID的最頂級欄目下的第一級全部欄目 sort='' 標籤排序方式 sort='new' 按最新排序 sort='rand' 隨機排序 sort='week' 按周統計排序 sort='month' 按月統計排序 sort='hot' 按點選數排序 sort='total' 按文件數排序 name='' 變數 empty='' 沒有資料時顯示的文案 mod='' 每隔N行輸出的內容 id='' 可以任意指定迴圈裡的變數名替代field,假設id='field1',模板呼叫如:{$field.title} 變成 {$field1.title} 底層欄位:
我們看看對應的引數。這裡我們有10個常用的標籤呼叫記錄。
1、呼叫指定欄目的子類包含父類
Select Code Copy{eyou:channelartlist typeid='82'} <a href="{eyou:field name='typeurl' /}">{eyou:field name='typename' /} {eyou:channel row="6" type ='son'} <a href="{$field.typeurl}" title="{$field.typename}">{$field.typename}</a> {/eyou:channel} {/eyou:channelartlist}
2、獲取當前欄目下的子類
{eyou:channeltype="first"id="field2"currentstyle="active"}
<liclass='{$field2.currentstyle}'>{$field2.typename}</li>
{/eyou:channel}
Select Code
Copy
3、呼叫指定欄目下面的內容
{eyou:arclisttypeid='71'limit='0,6'titlelen='30'infolen='160'orderby='add_time'}<li>
<divclass="img-center"><imgsrc="{$field.litpic}"alt="{$field.title}"></div>
<p>{$field.title}</p></li>
{/eyou:arclist}
Select Code
Copy
4、公共頭部底部呼叫
{eyou:includefile="header.htm"/}
{eyou:includefile="footer.htm"/}
Select Code
Copy
5、獲取當前位置
{eyou:position/}
Select Code
Copy
6、封面頁當前欄目的名稱
{$eyou.field.typename}
Select Code
Copy
7、分頁資料呼叫以及分頁樣式
{eyou:listpagesize="1"titlelen="30"}
<li><span>{$field.add_time|MyDate='Y-m-d',###}</span><b>{$field.title}</b></li>
{/eyou:list}
Select Code
Copy
8、css、js、image引入標籤
{eyou:staticfile="skin/css/style.css"/}
{eyou:staticfile="skin/js/jquery.min.js"/}
{eyou:globalname='web_templets_pc'/}模板路徑
Select Code
Copy
9、首頁頂級欄目呼叫
<liclass='active'>網站首頁</li>
{eyou:channeltype="top"id="field"currentstyle="active"}
<liclass="{eyou:notemptyname="$field.children"}dropdown{/eyou:notempty}">
<iclass="arr"></i>{$field.typename}
<divclass="dropdown-box">
{eyou:channelname="$field.children"id="field2"}
<p>{$field2.typename}</p>
{/eyou:channel}
</div>
</li>
{/eyou:channel}
Select Code
Copy
10、產品內容頁面圖片集呼叫
{eyou:volistname="$eyou.field.image_list"}
<divclass="swiper-slide">
<divclass="img-center"><imgsrc="{$field.image_url}"rel="{$field.image_url}"class="jqzoom"/></div>
</div>
{/eyou:volist}
Select Code
Copy
總結,我們可以看到大部分的標籤和織夢還是很相似的。我們需要根據對應的標籤修改調出文章即可。