Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to modify the corresponding file code by css

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "css how to modify the corresponding file code", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "css how to modify the corresponding file code" this article.

1. Change the code in the include/arc.taglist.class.php file as follows:

1-1. Find

$this- > TagInfos = $this- > dsql- > GetOne ("Select * From `dede_ tagindex` where taglike'{$this- > Tag}'")

The changes are:

$this- > TagInfos = $this- > dsql- > GetOne ("Select * From `dede_ tagindex` where id like' {$this- > Tag}'")

Note: the ID that represents the output of tag name from database to double output tag, that is, tags.php?/ in Chinese, becomes tags.php?/id

1-2. Find (get the current link location)

Function GetCurUrl () {if (! empty ($_ SERVER ["REQUEST_URI"])) {$nowurl = $_ SERVER ["REQUEST_URI"]; $nowurls = explode ("?", $nowurl); $nowurl = $nowurls [0];} else {$nowurl = $SERVER ["PHP_SELF"];} return $nowurl;}

Modify to

Function GetCurUrl () {$nowurl= $_ SERVER ["PHP_SELF"]; $nowurl=str_replace (".php",'', $nowurl); return $nowurl;}

1-3. Find (modify the contiguous path 1)

$plist ='; if (preg_match ('/ info/i', $listitem)) {$plist. = $maininfo.'';} if (preg_match ('/ index/i', $listitem)) {$plist. = $indexpage.'';} if (preg_match ('/ pre/i', $listitem)) {$plist. = $prepage.'';} if (preg_match ('/ pageno/i', $listitem)) {$plist. = $listdd.'' } if (preg_match ('/ next/i', $listitem)) {$plist. = $nextpage.'';} if (preg_match ('/ end/i', $listitem)) {$plist. = $endpage.'';} return $plist

Change to

$plist ='; if (eregi ('info',$listitem)) {$plist. = $maininfo.'';} if (eregi ('index',$listitem)) {$plist. = $indexpage.'';} if (eregi ('pre',$listitem)) {$plist. = $prepage.'';} if (eregi ('pageno',$listitem)) {$plist. = $listdd.'';} if (eregi ('next',$listitem)) {$plist. = $nextpage.'' } if (eregi ('end',$listitem)) {$plist. = $endpage.'';} return $plist

1-4. Find (modify paging link)

If ($j = = $this- > PageNo) {$listdd.= "$j\ r\ n";} else {$listdd.= "."\ r\ n ";}

Modify to

If ($j = = $this- > PageNo) {$listdd.= "$j";} else {$listdd.= ". $j.";}

1-5. Find (correct the path from the previous page to the next page)

If ($this- > page Notebook = 1) {$prepage.= "previous page\ r\ n"; $indexpage= "home page\ r\ n";} else {$indexpage= "home page\ r\ n";} if ($this- > page totalpage > 1) {$nextpage.= "next page\ r\ n"; $endpage= "last page\ r\ n";} else {$endpage= "last page\ r\ n";}

Revised to

If ($this- > page Notebook = 1) {if ($this- > PageNo = = 2) {$prepage.= "previous page\ r\ n"; $indexpage= "home page\ r\ n";} else {$prepage.= "previous page"; $indexpage= "home page";}} else {$indexpage= "home page";} if ($this- > pageNottable page page; & $totalpage > 1) {$nextpage.= "next page"; $endpage= "last page";} else {$endpage= "last page";}

1-6. Find (modify a total of several pages to remove class and html tags)

If ($totalpage TotalResult > 0) {return "1 page /". $this- > TotalResult. "Article";} if ($this- > TotalResult = = 0) {return "0 page /". $this- > TotalResult. "Article";} $maininfo = "total {$totalpage} page /". $this- > TotalResult. "Article\ r\ n"; $purl = $this- > GetCurUrl (); $purl. = "? /" .urlencode ($this- > Tag)

Revised to

If ($totalpage TotalResult > 0) {return "1 page /". $this- > TotalResult. ";} if ($this- > TotalResult = = 0) {return" 0 page / ". $this- > TotalResult.";} $maininfo = "total {$totalpage} pages /". $this- > TotalResult. "; $purl = $this- > GetCurUrl (); $purl. = rawurlencode ($this- > Tag)

1-7. Pay attention to correcting and correcting the location error of the generated page, and the tag pseudo-information location contains a question mark:

Pay attention to URL modification

$purl. = "? /" .urlencode ($this- > Tag)

Change to

$purl. = "/" .urlencode ($this- > Tag)

2. Change the include/taglib/tag.lib.php file

2-1. Change tag to id as follows

find

$row ['keyword'] = $row [' tag']

Change to

$row ['keyword'] = $row [' id']

2-2. Find

$row ['link'] = $cfg_cmsurl. "/ tags.php?/" .urlencode ($row [' keyword']). "/"

Change to:

$row ['link'] = $cfg_cmsurl. "/ tags/" .urlencode ($row [' id']). "- 1.html"

Note: the first line represents the id that changes the name of tag to tag, and the second line represents the id that changes the tags.php?/+tag keyword to tags + tag.

3. Find the file templets/default/taglist.htm

3-1. My status code

Current status:: home page > TAG tag > {dede:field.title /}

Revised to:

Current status:: home page > TAG tag > {dede:sql sql= "select tag from _ tagindex where id=~title~"} [field:tag/] {/ dede:sql}

3-2. Title page title

{dede:field.title/} _ {dede:global.cfg_webname/}

Revised to:

{dede:sql sql= "select tag from _ tagindex where id=~title~"} [field:tag/] {/ dede:sql} _ {dede:global.cfg_ site name/} above is all the content of the article "how to modify the corresponding file code by css". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report