Link"."/> Link".">

Home  >  Article  >  CMS Tutorial  >  How to add drop-down menu to dedecms friendly link

How to add drop-down menu to dedecms friendly link

藏色散人
藏色散人Original
2019-12-07 10:21:011889browse

How to add drop-down menu to dedecms friendly link

dedecmsHow to add a drop-down menu to a friendly link?

1) Implementation method

Find /include/taglib/flink.lib.php, find else if($type=='image'), and add the line above it:

Recommended learning: Dream Weaver cms

The code is as follows:

else if($type=='option') 
{ 
$link = "<option value=&#39;".$dbrow->url."&#39;>".cn_substr($dbrow->webname,$titlelen)."</option>"; 
}

2) Calling method

Collapse and expand XML/HTML

The code is as follows:

<select onchange="window.open(this.options[this.selectedIndex].value,&#39;_blank&#39;)"> 
<option>--相关链接地址--</option> 
{dede:flink row=&#39;24&#39; type=&#39;option&#39;/} 
</select>

3) Brief description

1. This extension retains all the functions of the original DedeCMS friendly link;

2. _blank is the opening method of the link. You can change it according to actual needs.

The effect is as follows:

How to add drop-down menu to dedecms friendly link

The above is the detailed content of How to add drop-down menu to dedecms friendly link. 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