Home CMS Tutorial DEDECMS How to modify the title of dedecms list page

How to modify the title of dedecms list page

Dec 13, 2019 am 10:24 AM
dedecms

How to modify the title of dedecms list page

dedecms How to modify the title of the list page?

Recommended study: 梦Weavercms

Recently I saw the page titles of sina.com.cn qq.com 163.com and found out that Their titles are as follows

Channel page: Channel name_Website name

List page: List name_Channel name_Website name

Content page: Article name_Column two ( List name)_Column 1 (Channel name)_Website name

I also want to change my small site to this. I checked the help document of dedecms and found that there is no such related mark. It seems that I can only I started to do it myself and started Baidu again. I found that there are many articles like this. Please check another article transferred from this site,

DEDE implements "article title-column name-website name"

But as a technician, I was driven to write one myself. I will post the method I implemented and how to call it for everyone’s convenience.

Version 5.0, the classes and templates involved are as follows A few

inc_archives_view.php (最新5.5版为 arc.archives.class.php)内容页生成类 
inc_arclist_view.php (最新5.5版为 arc.listview.class.php)列表页生成类 
inc_typelink.php(最新5.5版为 typelink.class.php) 用于获取页面位置和栏目名相关类 
index_article.htm 频道页模板 
list_article.htm 列表页模板 
article_article.htm 内容页模板
Copy after login

First let’s modify the kernel of dedecms, (the file names I mentioned below use version 5.0, you can check the files corresponding to the new version one by one according to the files I listed above)

Ctrl F in the inc_typelink.php class to search for "function GetPositionLink" Enter the following function under the GetPositionLink() function

This function is used to obtain the position information of the current page

For example, column 1 _Column 2

The following is the quoted content:

The code is as follows:

/* 
* 得到当前页的位置,主要用在页面title中 
* $typeid 栏目id 
* &$info 引用传值 
* $SplitSymbol 各栏目之间的分割符 
* 排序 desc:栏目二_栏目一 ,asc:栏目一_栏目二 
*/ 
function getPosition($typeid,&$info,$SplitSymbol='_',$orderby='desc'){ 
if (empty($typeid)) return false; 
$this->dsql->SetQuery("Select ID,reID,typename From jyk_arctype where ID='".$typeid."'"); 
$infos = $this->dsql->GetOne(); 
$symbol = empty($info)?"":$SplitSymbol; 
if ($orderby=='desc'){ 
$info = $info.$symbol.$infos['typename']; 
} 
else{ 
$info = $infos['typename'].$symbol.$info; 
} 
if ($infos['reID']!='0'){ 
$this->getPosition($infos['reID'],&$info,$SplitSymbol,$orderby); 
} 
}
Copy after login

As shown in the picture:

How to modify the title of dedecms list page

Continue Next, add relevant code to the parsing list page and content page classes.

Look for $this->Fields['position'] in the inc_archives_view.php class and add the following code below this line

The code is as follows:

$this->TypeLink->getPosition($this->Fields['typeid'],&$this->Fields['position2'],"_");
Copy after login

Also search for $this->Fields['position'] in the inc_arclist_view.php class and add the following code below it

The code is as follows:

$this->TypeLink->getPosition($typeid,&$this->Fields['position2'],"_");
Copy after login

Okay, now we call in the template

Use {dede:field name='position2'/} in the title tags of list_article.htm and article_article.htm to call

As shown in the figure

How to modify the title of dedecms list page

#Note: There is no need to call the channel page in this way. Although the channel name can also be obtained, it is more convenient to call it with {dede:field name='typename'/} , there is no need to modify the inc_arcpart_view.php class

The implementation effect is as follows:

How to modify the title of dedecms list page

O, add this article, modify the Dreamweaver system to achieve it "Article Name_Column 1_Column 2_Website Name" There are 4 different methods in total. Choose according to your personal situation.

I hope your website will be included in Baidu and Google more, haha.

Afterword:

When developing this function, I found that dede, like the column data table (which is not changed much at ordinary times), is not cached. When the program is used, it is linked to the database for query in real time, such as inc_typelink. In PHP, all data are directly checked out from SQL. I can’t help but sigh that phpcms is better than dedecms in processing. phpcms directly caches data that is not changed often into PHP files. Although the generation speed of the latest version of dedecms 5.5 is not bad, But if the developers of Dream Weaver can better optimize these details, wouldn’t the generation speed be faster?

The above is the detailed content of How to modify the title of dedecms list page. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Where is the imperial cms resource network template? Where is the imperial cms resource network template? Apr 17, 2024 am 10:00 AM

Empire CMS template download location: Official template download: https://www.phome.net/template/ Third-party template website: https://www.dedecms.com/diy/https://www.0978.com.cn /https://www.jiaocheng.com/Installation method: Download template Unzip template Upload template Select template

How dedecms implements template replacement How dedecms implements template replacement Apr 16, 2024 pm 12:12 PM

Template replacement can be implemented in Dedecms through the following steps: modify the global.cfg file and set the required language pack. Modify the taglib.inc.php hook file and add support for language suffix template files. Create a new template file with a language suffix and modify the required content. Clear Dedecms cache.

How to upload local videos to dedecms How to upload local videos to dedecms Apr 16, 2024 pm 12:39 PM

How to upload local videos using Dedecms? Prepare the video file in a format that is supported by Dedecms. Log in to the Dedecms management backend and create a new video category. Upload video files on the video management page, fill in the relevant information and select the video category. To embed a video while editing an article, enter the file name of the uploaded video and adjust its dimensions.

What website can dedecms do? What website can dedecms do? Apr 16, 2024 pm 12:24 PM

Dedecms is an open source CMS that can be used to create various types of websites, including: news websites, blogs, e-commerce websites, forums and community websites, educational websites, portals, other types of websites (such as corporate websites, personal websites, photo album websites, video sharing website)

What loopholes does dedecms have? What loopholes does dedecms have? Aug 03, 2023 pm 03:56 PM

DedeCMS is an open source content management system that has some potential vulnerabilities and security risks: 1. SQL injection vulnerability. Attackers can perform unauthorized operations or obtain sensitive data by constructing malicious SQL query statements; 2. File Upload vulnerability, attackers can upload files containing malicious code to the server to execute arbitrary code or obtain server permissions; 3. Sensitive information leakage; 4. Unauthenticated vulnerability exploitation.

How to use dedecms How to use dedecms Apr 16, 2024 pm 12:15 PM

Dedecms is an open source Chinese CMS system that provides content management, template system and security protection. The specific usage includes the following steps: 1. Install Dedecms. 2. Configure the database. 3. Log in to the management interface. 4. Create content. 5. Set up the template. 6. Manage users. 7. Maintain the system.

How does dedecms implement template replacement? How does dedecms implement template replacement? Apr 16, 2024 pm 12:21 PM

To implement template replacement in DedecMS, you need to perform the following steps: Determine the template file to be replaced. Common files include index.htm, list.htm and show.htm. Create a new template file, retaining the DedecMS markup. Upload the new template file, overwriting the original file. clear cache. Refresh the site to see the changes.

Accurate and reliable dedecms conversion tool evaluation report Accurate and reliable dedecms conversion tool evaluation report Mar 12, 2024 pm 07:03 PM

Accurate and reliable dedecms conversion tool evaluation report With the rapid development of the Internet era, website construction has become one of the necessary tools for many companies and individuals. In website construction, using a content management system (CMS) can manage website content and functions more conveniently and efficiently. Among them, dedecms, as a well-known CMS system, is widely used in various website construction projects. However, sometimes we are faced with the need to convert the dedecms website to other formats, in which case we need to use a conversion tool

See all articles