91久久国产老熟女_欧美日韩亚洲中文字幕网页_无码不卡在线试看_精品国产综合高清一区二区三区_美女午夜精品福利_秋霞影院免费鲁丝片_扒开两腿猛捅爽高潮视频_高清不卡亚洲视频_4399影视在线观看免费_国产91精品福利手机观看

歡迎光臨全寶鑫官網(wǎng),我們是一家互聯(lián)網(wǎng)服務(wù)公司,專業(yè)搭建公司網(wǎng)站,和電商網(wǎng)店裝修代運營!

咨詢熱線:137-6042-7131
微信聯(lián)系二維碼

織夢網(wǎng)頁上一篇和下一篇修改為中英文靜態(tài)代碼

發(fā)布期:2023-06-18 | 來源處:本站 | 編輯者:站長助手 | 瀏覽量:0
18
06
2023

    織夢網(wǎng)頁上下頁面中英文靜態(tài)代碼


    include/arc.archives.class.php

將下面的內(nèi)容代替:


    /**
     *  獲取上一篇,下一篇鏈接
     *
     * @access    public
     * @param     string  $gtype  獲取類型  
     *  pre:上一篇  preimg:上一篇圖片  next:下一篇  nextimg:下一篇圖片
     * @return    string
     */
    function GetPreNext($gtype='')
    {
        $rs = '';
        if(count($this->PreNext)<2)
        {
            $aid = $this->ArcID;
            $preR =  $this->dsql->GetOne("Select id From `dede_arctiny` where id<$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id desc");
            $nextR = $this->dsql->GetOne("Select id From `dede_arctiny` where id>$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id asc");
            $next = (is_array($nextR) ? " where arc.id={$nextR['id']} " : ' where 1>2 ');
            $pre = (is_array($preR) ? " where arc.id={$preR['id']} " : ' where 1>2 ');
            $query = "Select arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic,
                        t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath
                        from `dede_archives` arc left join dede_arctype t on arc.typeid=t.id  ";
            $nextRow = $this->dsql->GetOne($query.$next);
            $preRow = $this->dsql->GetOne($query.$pre);
            if(is_array($preRow))
            {
                $mlink = GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
                $preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
                $this->PreNext['pre'] = "<a href='$mlink'>上一篇:{$preRow['title']}</a> ";
                $this->PreNext['enpre'] = "<a href='$mlink'>Previous:{$preRow['title']}</a> ";
				$this->PreNext['prewap'] = "<a href='/m$mlink' class="page" data-ignore="true">上一條:{$preRow['title']}</a>  ";
				$this->PreNext['enprewap'] = "<a href='/m$mlink' class="page" data-ignore="true">Previous:{$preRow['title']}</a>  ";
                $this->PreNext['preimg'] = "<a href='$mlink'><img src="{$preRow['litpic']}" alt="{$preRow['title']}"/></a> "; 
            }
            else
            {
                $this->PreNext['pre'] = "上一篇:沒有了 ";
                $this->PreNext['enpre'] = "Previous:No records ";
				$this->PreNext['prewap'] = "<a href="javascript:;" class="page" data-ignore="true">上一條:暫無記錄</a>  ";
				$this->PreNext['enprewap'] = "<a href="javascript:;" class="page" data-ignore="true">Previous:No records</a>  ";
                $this->PreNext['preimg'] ="<img src="/templets/default/images/nophoto.jpg" alt="對不起,沒有上一圖集了!"/>";
            }
            if(is_array($nextRow))
            {
                $mlink = GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],
                $nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);
                $this->PreNext['next'] = "<a href='$mlink'>下一篇:{$nextRow['title']}</a> ";
                $this->PreNext['ennext'] = "<a href='$mlink'>Next:{$nextRow['title']}</a> ";
				$this->PreNext['nextwap'] = "<a href='/m$mlink' class="page" data-ignore="true">下一條:{$nextRow['title']}</a> ";
				$this->PreNext['ennextwap'] = "<a href='/m$mlink' class="page" data-ignore="true">Next:{$nextRow['title']}</a> ";
                $this->PreNext['nextimg'] = "<a href='$mlink'><img src="{$nextRow['litpic']}" alt="{$nextRow['title']}"/></a> ";
            }
            else
            {
                $this->PreNext['next'] = "下一篇:沒有了 ";
                $this->PreNext['ennext'] = "Next:No records ";
				$this->PreNext['nextwap'] = "<a href="javascript:;" class="page" data-ignore="true">下一條:暫無記錄</a> ";
				$this->PreNext['ennextwap'] = "<a href="javascript:;" class="page" data-ignore="true">Next:No records</a> ";
                $this->PreNext['nextimg'] ="<a href='javascript:void(0)' alt=""><img src="/templets/default/images/nophoto.jpg" alt="對不起,沒有下一圖集了!"/></a>";
            }
        }
        if($gtype=='pre')
        {
            $rs =  $this->PreNext['pre'];
        }
		else if($gtype=='enpre'){
            
            $rs =  $this->PreNext['enpre'];
        }
		else if($gtype=='prewap'){
            
            $rs =  $this->PreNext['prewap'];
        }
		else if($gtype=='enprewap'){
            
            $rs =  $this->PreNext['enprewap'];
        }
        else if($gtype=='preimg'){
            
            $rs =  $this->PreNext['preimg'];
        }
        else if($gtype=='next')
        {
            $rs =  $this->PreNext['next'];
        }
        else if($gtype=='ennext')
        {
            $rs =  $this->PreNext['ennext'];
        }
		else if($gtype=='nextwap')
        {
            $rs =  $this->PreNext['nextwap'];
        }
		else if($gtype=='ennextwap')
        {
            $rs =  $this->PreNext['ennextwap'];
        }
        else if($gtype=='nextimg'){
            
            $rs =  $this->PreNext['nextimg'];
        }
        else
        {
            $rs =  $this->PreNext['pre']."   ".$this->PreNext['next'];
        }
        return $rs;
    }







下面推薦類似信息

如何取消織夢按時間自動創(chuàng)建路徑文件夾

發(fā)布日期:2020-06-29
織夢網(wǎng)站系統(tǒng)每次上傳文章和產(chǎn)品,都以時間自動創(chuàng)建路徑文件夾和文件名,這個默認規(guī)劃不化算,使文章鏈接有多級深度與長度,十分不利于搜索引擎的收錄與優(yōu)化

織夢圖集Flash控件停用無法上傳圖片處理

發(fā)布日期:2022-02-27
由于Flash控件與2020年停用,導(dǎo)致織夢系統(tǒng)圖集無法上傳圖片,雖然flash已經(jīng)退出舞臺了,而織夢的圖集上傳功能仍然使用的是flash控件,

kindeditor4.1編輯內(nèi)容時默認顯示字體大小設(shè)置

發(fā)布日期:2018-12-05
kindeditor4.1編輯內(nèi)容時默認顯示字體大小覺得編輯的時候字體實在太小,我查看元素,才發(fā)現(xiàn),原來只有12PX,的確是夠小的。那應(yīng)該如何來調(diào)整其樣式呢?

織夢dede上下篇輸出鏈接、標(biāo)題、縮略圖、時間設(shè)置方法

發(fā)布日期:2020-06-29
織夢網(wǎng)站系統(tǒng)雖然功能強大,但很多功能需要二次開發(fā),才能更完善,二次開發(fā)讓上一篇和下一篇標(biāo)簽輸出顯示鏈接、標(biāo)題、縮略圖、時間,原代碼是沒有上一篇和下一篇時不輸出任何東西

織夢圖集上傳圖片不自動加水印的解決辦法

發(fā)布日期:2021-04-26
織夢的圖集模型在上傳圖片時默認是不給圖集加水印的,也沒有自動加水印的選項,所以我們需要對其進行修改

如何使織夢導(dǎo)航欄目實現(xiàn)三級欄目調(diào)用?

發(fā)布日期:2020-07-04
織夢網(wǎng)站系統(tǒng)如何使用顯示三級目導(dǎo)航菜單,通常有些客戶要求導(dǎo)航欄目能夠下拉顯示三級欄目導(dǎo)航菜單,經(jīng)過全寶鑫技術(shù)員研究和網(wǎng)絡(luò)收集,分享一下經(jīng)驗總結(jié)!
做網(wǎng)站保障承諾

全寶鑫公司,給客戶做網(wǎng)站八大保障承諾:


1、按客戶要求訂制,專業(yè)技術(shù)員做到客戶滿意為止。


2、網(wǎng)頁欄目和網(wǎng)頁數(shù)不限,用戶可通過網(wǎng)站后臺增加和修改。


3、網(wǎng)站電腦版和移動版同時開發(fā),同一網(wǎng)址,電腦打開是電腦版網(wǎng)頁,手機打開自適應(yīng)手機版網(wǎng)頁。


4、網(wǎng)站美工和客戶相互配合,客戶提供產(chǎn)品相關(guān)的圖片資料,美工排版,上傳到網(wǎng)站。


5、網(wǎng)站搭建完成后,配網(wǎng)站操作說明書,和操作視頻教學(xué)。


6、配相關(guān)網(wǎng)站優(yōu)化排名資料,和網(wǎng)頁圖片處理軟件,管理操作資料推送給客戶。


7、根據(jù)搜索引擎規(guī)則編寫網(wǎng)站代碼,自然排名和競價排名,容易被搜索引擎收錄。


8、交一次搭建網(wǎng)站制作費用,獲得終身網(wǎng)站使用權(quán)。


訂制網(wǎng)站價格:普通型3至5千;高端型6至9千;特殊功能型1萬以上,最終價格,根據(jù)您的要求定。



網(wǎng)店代管理說明

全寶鑫電商美工代管理網(wǎng)店流程,提供技術(shù)服務(wù)說明:


1、從專業(yè)拍攝產(chǎn)品圖片;


2、到美工處理產(chǎn)品圖片;


3、到上傳產(chǎn)品資料圖片;


4、到網(wǎng)店旺鋪排版裝修;


5、到優(yōu)化管理網(wǎng)店旺鋪。


同時網(wǎng)店經(jīng)營商家只需要每天上班時間,按時登錄網(wǎng)店的在線客服溝通工具,等待與詢盤過來的客戶及時溝通,也就是開始等待接訂單。



TAG 標(biāo)簽
聯(lián)
熱線(微信同號):
137-6042-7131
在線客服:
售前
售前
售前
售后
微信圖標(biāo)
聯(lián)系微信:
微信聯(lián)系二維碼
歡迎留言,我們及時與您溝通!
為您公司定制,最符合您公司的官方網(wǎng)站!

搭建網(wǎng)站定制網(wǎng)站,將獲得全寶鑫公司,設(shè)計師免費為您設(shè)計
創(chuàng)意LOGO(商標(biāo)),和設(shè)計您滿意的名片。

網(wǎng)店托管服務(wù)流程:拍攝產(chǎn)品、美工處理、上傳網(wǎng)店、
版面設(shè)計、資料優(yōu)化,按年托管!

工作日 9:00-18:00 等您聯(lián)系咨詢?。ㄎ⑿磐枺?span>137-6042-7131
留言說明您需要的服務(wù)!

您需要的服務(wù)?(可選填)


QQ咨詢