How to modify the Dreamweaver template dedeCMS friendly links to drop-down style?
Modify dedecms friendly links to drop-down style. Not only can the classification be clear, but if there are many connections, it can look simple and save space. However, such friendly links are not recognized by search engines.
Recommended learning: Dreamweaver cms
Let’s talk about the method:
First step:
Open include\taglib flink.lib.php under #Change to
$link = "<a href='".$dbrow->url."' target='_blank'>".cn_substr($dbrow->webname,$titlelen)."</a> ";
You can also edit it directly through the template in dedecms' background.
Second step:
Modify the homepage template
Change the original friendly link {dede:flink row='24'/} to
$link = "<option value='".$dbrow->url."'>".cn_substr($dbrow->webname,$titlelen)."</option> ";
That is, the friendly links of the first and second categories are called respectively.
The above is the detailed content of How to modify the dedeCMS friendly links of the DreamWeaver template to be drop-down. For more information, please follow other related articles on the PHP Chinese website!