How to call the current top column name, ID, url in DreamWeaver

How does Dreamweaver call the current top-level column name, ID, and url?
When we use the Dreamweaver template to build a website, we often encounter the need to call the current top-level column name, and the Dreamweaver default {dede:field name='typename' /} can only get the current column. The name of the one-level column on the page, not the name of the top-level column of the current column.
Recommended learning: Dream Weaver cms
Add at the bottom of include/common.func.php:
//获取顶级栏目名
function GetTopTypename($id)
{
global $dsql;
$row = $dsql->GetOne("SELECT typename,topid FROM dede_arctype WHERE id= $id");
if ($row['topid'] == '0')
{
return $row['typename'];
}
else
{
$row1 = $dsql->GetOne("SELECT typename FROM dede_arctype WHERE id= $row[topid]");
return $row1['typename'];
}
}Note: If the top column is not bound To determine the second-level domain name, the called field should be sitepath, so the code should be as follows:
//获取顶级栏目url
function GetTopTypeurl($id)
{
global $dsql;
$row = $dsql->GetOne("SELECT sitepath,topid FROM dede_arctype WHERE id= $id");
if ($row['topid'] == '0')
{
return $row['sitepath'];
}
else
{
$row1 = $dsql->GetOne("SELECT sitepath FROM dede_arctype WHERE id= $row[topid]");
return $row1['sitepath'];
}
}The function function called by other fields in the top column can be written as shown above.
Similarly, you can get the top-level column url method (the field called when the top-level column is bound to the second-level domain name is "siturl")
function GetTopTypeurl($id)
{
global $dsql;
$row = $dsql->GetOne("SELECT siteurl,topid FROM dede_arctype WHERE id= $id");
if ($row['topid'] == '0')
{
return $row['siteurl'];
}
else
{
$row1 = $dsql->GetOne("SELECT siteurl FROM dede_arctype WHERE id= $row[topid]");
return $row1['siteurl'];
}
}When called on the article page or column list page, This can be achieved by adding the following line of code where you want to call the column name.
{dede:field name='typeid' function="GetTopTypename(@me)" /} 顶级栏目名
{dede:field name='typeid' function="GetTopTypeurl(@me)" /} 顶级栏目urldede calls the top column ID
Method 1:
{dede:field.typeid function="GetTopid(@me)"/} dedeyuan recommends this method , it is feasible after testing.
dedeCall the top-level column ID
Method 2:
1. Add this tag syntax
{dede:type}[feild:topid/]{/dede:type}where you need to call the top-level column ID 2. Modify the source file and find type.lib.php in the taglib directory under the include directory.
Find this statement
$row = $dsql->GetOne(“Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath From `dede_arctype` where id=’$typeid’ “);
Modify it to
$row = $dsql->GetOne(“Select id,topid,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath From `dede_arctype` where id=’$typeid’ “);
Add
if( $row['topid']==0){$row['topid']=$row['id'];}like this in the next line of if(!is_array($row)) return ”; , this statement can be called in both top-level columns and sub-columns
The above is the detailed content of How to call the current top column name, ID, url in DreamWeaver. 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

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

Atom editor mac version download
The most popular open source editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.





