


What should I do if the URL cannot be entered for the universal tag loop in Dedecms?
What should I do if I cannot enter the URL for the universal tag loop in Dedecms?
The example in this article describes the solution to the problem that the universal tag loop in Dedecms cannot enter the URL. Share it with everyone for your reference. The specific analysis is as follows:
The universal label loop allows you to call the data label of any table in dedecms at will, so it is called the universal label. But today when using the loop, we found that our commonly used arcurl is empty, which means url If not, it means that the tag is gone. Let me solve this problem for you.
Let’s first look at the official description of the loop tag
Tag name: loop
Function Description: Call the data tag of any table
Scope of application: global tag
Basic syntax, the code is as follows:
The code is as follows:
{dede:loop table='dede_archives' sort='' row='4' if=''} <a href='[field:arcurl/]'>[field:title/]</a> {/dede:loop}
Tag attributes:
table: query table name
sort: field used for sorting
row: number of returned results
if: query conditions
According to this, I wrote a simple example, the code is as follows:
The code is as follows:
{dede:loop table='dede_archives' sort='' row='4' if=''} <a href='[field:arcurl/]'>[field:title/]</a> {/dede:loop} //输出结果 你好dedecms
You will notice that if href='' is empty, there will be no url address. Yeah, this tag is useless to me. Baidu found a solution.
1. Open Include/common.func.php, find line 54, and add a function code here as follows:
The code is as follows:
function IDReturnURL($ID) { //lonely global $dsql; $query = "Select arc.*,tp.typedir,tp.typename,tp.corank,tp.isdefault, tp.defaultname,tp.namerule,tp.moresite,tp.siteurl,tp.sitepath from dede_archives arc left join dede_arctype tp on arc.typeid=tp.id where arc.id = ".$ID; $row = $dsql->GetOne($query); $ReturnURL = GetFileUrl($row['id'],$row['typeid'],$row['senddate'],$row['title'],$row['ismake'], $row['arcrank'],$row['namerule'],$row['typedir'],$row['money'],$row['filename'],$row['moresite'],$row['siteurl'],$row['sitepath']); return $ReturnURL; }
2. The writing method of our calling method in the template has also changed, the code is as follows:
The code is as follows:
{dede:loop table='dede_archives' sort='' row='4' if=''} <li>·<a href='[field:id function=IDReturnURL(@me)/]'>[field:title function=cn_substrR(@me,44)/]</a></li> {/dede:loop}
The problem has been perfectly solved. The same is true when you want to use custom sql tags.
In fact, use [field:id function=IDReturnURL(@me)/] instead of [ field:arcurl/] tag, the core of my solution to this problem is [field:id function=IDReturnURL(@me)/] and IDReturnURL.
Afterwards, I thought about it and then searched for an arclist tag. , the code is as follows:
The code is as follows:
{dede:arclist flag='h' typeid='' row='' col='' titlelen='' infolen='' imgwidth='' imgheight='' listtype='' orderby='' keyword='' limit='0,1'} <a href='[field:arcurl/]'>[field:title/]</a> {/dede:arclist}
In this way we can directly use the following code:
The code is as follows:
{dede:arclist row='10' titlelen='24' orderby='pubdate' idlist='' col='2'} •[field:textlink/]([field:pubdate function=MyDate('m-d',@me)/])<br/> {/dede:arclist}
That will solve the problem.
The above is the detailed content of What should I do if the URL cannot be entered for the universal tag loop in Dedecms?. 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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.