Home>Article>CMS Tutorial> How to get the name and link of the previous column in Dedecms
How does Dedecms obtain the name and link of the previous column?
Recommended study:梦Weavercms
梦WeaverDedecms Get the name and link of the previous column
{dede:field name='typeid' runphp='yes'} global $dsql; /*获取当前栏目信息*/ $typeid = @me; $query = "SELECT reid FROM dede_arctype where id = $typeid"; $rs = $dsql->GetOne($query); $reid = $rs['reid'];//获取到栏目的上级栏目 /*获取上级栏目信息*/ $query2 = "SELECT * FROM dede_arctype where id = $reid"; $row = $dsql->GetOne($query2); /*打印栏目上级栏目链接信息*/ $typename = $row['typename']; $link = GetTypeUrl($row['typeid'],MfTypedir($row['typedir']),$row['isdefault'],$row['defaultname'],$row['ispart'],$row['namerule2'],$row['moresite'],$row['siteurl'],$row['sitepath']); @me = "$typename"; {/dede:field}
The above is the detailed content of How to get the name and link of the previous column in Dedecms. For more information, please follow other related articles on the PHP Chinese website!