Home > CMS Tutorial > DEDECMS > body text

How to implement dedecms homepage paging through free lists

藏色散人
Release: 2020-01-10 09:08:45
Original
2255 people have browsed it

How to implement dedecms homepage paging through free lists

How to implement dedecms homepage paging through free lists?

Realize dedecms home page paging through free lists

Recommended learning: 梦weavercms

1. Enter the background core ---》Channel Model--"Free list management---"Add list.

2. Define a free list:

(Note: We are for homepage paging, so the list HTML must be stored in the directory otherwise it cannot be displayed, so only {cmspath} is retained)

How to implement dedecms homepage paging through free lists

The following fields can be supported in the list:

Supported fields (underlying variables [field:varname/]): id, title, color, typeid, ismake, description, pubdate, senddate , arcrank, click, litpic, typedir, typename, arcurl, typeurl,

stime (pubdate's "0000-00-00" format), textlink, typelink, imglink, image Ordinary fields use [field:field directly Name/] means.

·Pubdate publishing time calling parameters [field:pubdate function=MyDate('Y-m-d H:i:s',@me)/]

The following figure shows the label of template calling:

How to implement dedecms homepage paging through free lists

Use {dede:freelist/} to call all the information in the free list just set

Paging: {dede:pagelist listitem="info,index, end,pre,next,pageno" listsize="5"/}

Use this method to realize homepage paging. The template can only use the homepage template. In other words, the function of updating the homepage HTML in the background is no longer available. In the future, after generating a website with one click, you have to go to the free list to generate it. Otherwise, the homepage of the website will be blank.

dedecms free list function has a annoying phenomenon, it needs to be changed before each generation Of course, this has little impact on other places where free lists are needed, but we It would be a pain in the ass to use free lists to implement home page paging.

The solution is as follows:

Open makehtml_freelist_action.php (create a free list) in the Dede (default background management directory) directory and find

$dsql->ExecuteNoneQuery(" Update `dede_freelist` set nodefault='1' where aid='$startid';");

Find the above line of code, add // in front and comment it out.

The above is the detailed content of How to implement dedecms homepage paging through free lists. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template