Home > CMS Tutorial > DEDECMS > How to sort the Dreamweaver TAG tag list by latest release time

How to sort the Dreamweaver TAG tag list by latest release time

angryTom
Release: 2019-11-16 11:01:34
Original
2428 people have browsed it

How to sort the Dreamweaver TAG tag list by latest release time

How to sort the Dreamweaver TAG tag list by the latest release time

Nowadays, search engines attach great importance to TAG. Solve the problem that the TAG list of DedeCms is sorted by the latest release time, which can effectively provide the latest TAG to users and search engines. (Recommended tutorial: dedecms tutorial)

Solution:

Find the /include/arc.taglist.class.php file (about 313 lines), find the code:

$this->dsql->SetQuery("SELECT aid FROM `dede_taglist` WHERE tid =
 '{$this->TagInfos['id']}' AND arcrank>-1 LIMIT $limitstart,$getrow");
Copy after login

Modify to:

$this->dsql->SetQuery("SELECT aid FROM `dede_taglist` WHERE tid =
 '{$this->TagInfos['id']}' AND arcrank>-1 order by aid desc LIMIT $limitstart,$getrow");
Copy after login

Description: Earlier version of dede_taglist is dede_taglist. After modification, the order of the TAG list will be based on the latest publication time of the article.

The above is the detailed content of How to sort the Dreamweaver TAG tag list by latest release time. 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