【 自有用處 】

WordPress 代码实现下拉友情链接

转自 http://down.chinaz.com/try/201110/1276_1.htm

很多企业网站的左下方都有一个下拉的友情链接,这个该怎么实现呢?其实很简单,在主题的function.php文件中添加以下代码:

function dropdown_links(){
global $wpdb;
$sql = "SELECT link_url, link_name, link_description FROM $wpdb->links WHERE link_visible = 'Y' Order By link_name";
$results = $wpdb->get_results($sql);
if (!$results) {
return; }
$output ='<form action="" name="dd">
<select name="dd2" onchange="document.location=dd.dd2.options[selectedIndex].value" >
<option value="">Select ... </option>';
foreach ($results as $row) {
$the_link = '#';
if (!empty($row->link_url)){
$the_link = wp_specialchars($row->link_url);
}
$desc = wp_specialchars($row->link_description, ENT_QUOTES);
$name = wp_specialchars($row->link_name, ENT_QUOTES);
$title = $desc;
if ('' != $title) {
$title = ' title="' . $title . '"';
}
$alt = ' alt="' . $name . '"';
$output .= '<option value="'. $the_link .'">'.$name.'</option>';
}
$output .= '</select></form>';
echo $output;
}

  然后在使用下拉友情链接的地方添加:

<?php dropdown_links(); ?>

  即可,css样式你可以按照自己的爱好来自行定义,OK !

更新日:2011/11/28 · 12:45


————本日志版权归花莫笑所有。
日志内的相关图文请勿转载。

Leave a Reply

Your email address will not be published.

[太开心] [二哈] [doge] [太阳] [允悲] more »
Support By henghost
©2006-2023 ファモシャオの声優レコード | WordPress Theme: Cosimo by CrestaProject.