Home  >  Article  >  CMS Tutorial  >  How to modify the "current location" of DreamWeaver

How to modify the "current location" of DreamWeaver

藏色散人
藏色散人Original
2019-11-19 10:19:002849browse

How to modify the

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=&#39;".$typepage."&#39;>".$typeinfos[&#39;typename&#39;]."</a>"; 
  return $typelink; 
 }

What it returns is $typelink, and $typelink has a link. Change

$typelink = "<a href=&#39;".$typepage."&#39;>".$typeinfos[&#39;typename&#39;]."</a>";

Change it to

$typelink = "".$typeinfos[&#39;typename&#39;]."";

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn