Home > Article > CMS Tutorial > One way to solve the problem that the universal tag loop in Dedecms cannot enter the URL
This article mainly introduces the solution to the problem that the universal tag loop in Dedecms cannot enter the URL. It involves modification of the tag source code and has certain reference value. Friends in need can refer to it
Universal label loop allows you to call the data label of any table in dedecms at will, so it is called universal label. But today when using the loop, we found that our commonly used arcurl is empty, which means that the url is not available. That means 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
Applicable scope: global tag
Basic syntax, the code is as follows:
{dede:loop table='dede_archives' sort='' row='4' if=''} <a href='[field:arcurl/]'>[field:title/]</a> {/dede:loop}
Tag attribute:
table: Query table Name
sort: Field used for sorting
row: Number of returned results
if: Query conditions
According to this, I wrote a A simple example, 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. This tag is therefore useless to me. Baidu has found a solution.
1. Open Include/common.func.php, find line 54, and add a function code here 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 of our calling method in the template has also changed. , 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, just use [field:id function= IDReturnURL(@me)/] replaced the [field:arcurl/] tag. The core of my solution to this problem was [field:id function=IDReturnURL(@me)/] and IDReturnURL.
Think about it later So I went on to find an arclist tag. 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:
{dede:arclist row='10' titlelen='24' orderby='pubdate' idlist='' col='2'} •[field:textlink/]([field:pubdate function=MyDate('m-d',@me)/])<br/> {/dede:arclist}
to solve the problem.
I hope this article will help The above will be helpful to everyone’s dedecms website building.
Recommended tutorial: dedecms tutorial
The above is the detailed content of One way to solve the problem that the universal tag loop in Dedecms cannot enter the URL. For more information, please follow other related articles on the PHP Chinese website!