dedecmsHow to call the column name and column link address?
The example in this article describes the method of dedecms calling the column name and column link address
Recommended learning: 梦Weavercms
Working on it today During an SEO optimization, I found that the column on the right side of the page could not be called. Later I found a solution on Baidu. I will sort it out here and share it with my friends.
This is how I handled it at first, the code is as follows:
The code is as follows:
<dt><strong>推荐[field:typename/]</strong></dt> <dd> <ul class="c1 ico2"> {dede:arclist flag='c' titlelen=42 row=10} <li><a href="[field:arcurl/]">[field:title/]</a></li> {/dede:arclist} </ul> </dd>
It turns out that the output is:
The code is as follows:
推荐[field:typename/]
The template tag is entered directly, which is definitely not what we want. Later, Baidu searched DeDECMS to call the column name and found the following method. It turned out that we need to add {dede:type}. The code is as follows:
The code is as follows:
{dede:type} <a href="[field:typelink /]">[field:typename /]</a> {/dede:type} //没链接的 {dede:type} [field:typename /] {/dede:type}
Let’s try it again. The code is as follows:
The code is as follows:
<dt><strong>推荐{dede:type}[field:typename /]{/dede:type}</strong></dt>
The result is:
The code is as follows:
<dt><strong>推荐游戏名称</strong></dt>
The above is the detailed content of How to call the column name and column link address in dedecms. For more information, please follow other related articles on the PHP Chinese website!