How to modify the "current location" of Dreamweaver?
How to modify the "current position" {dede:field.position} in DEDECMS
Modify the current position {dede:field.position} in dedecms , that is, as long as the home page > first-level column > second-level column.
Recommended learning: dedecms tutorial
Find include/typelink.class.php and find this function in this file
function GetPositionLink($islink=true)
dedecms is here Determine whether to read the link. If you change true to false, this function will not be executed:
function GetOneTypeLink($typeinfos) { $typepage = $this->GetOneTypeUrl($typeinfos); $typelink = "<a href='".$typepage."'>".$typeinfos['typename']."</a>"; return $typelink; }
What it returns is $typelink, and $typelink has a link. Change
$typelink = "<a href='".$typepage."'>".$typeinfos['typename']."</a>";
Change it to
$typelink = "".$typeinfos['typename']."";
and the link will be removed, and you can write it in the format you want. very convenient.
In addition, many friends want to modify the ">" symbol in the homepage>First-level column>Second-level column, for example, do not want it, or replace it with ">>" or something like that , in fact, it is very simple. You can set it in the background. Enter the system---system basic parameters--core settings--interval symbols for column positions. You can enter the symbols you like, **#%@#¥ anything is fine.
The above is the detailed content of How to modify the 'current location' of DreamWeaver. For more information, please follow other related articles on the PHP Chinese website!