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 内容页模板
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); } }
As shown in the picture:
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'],"_");
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'],"_");
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
#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:
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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 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.

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)

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.

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.

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 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
