下拉選單 – 每月文章

*sidebar.php*

每月文章收成下拉選單,版面會比較精簡。

參考出處:部落格隨便祭

<form action="" name="Month" id="Month">
<select name="menu_month" id="menu_month" onchange="jumpMenu('parent',this,0)">
<option value="">Plz Select</option>
<?php wp_get_archives('format=option'); ?>
</select>
</form>

下拉選單 – JavaScript

*header.php*

要加入下面這一段,才能讓選單發生跳頁的作用。

<script type="text/javascript">
function jumpMenu(targ,selObj,restore){
if(!selObj.options[selObj.selectedIndex].value){
return false;
}
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); if (restore)
selObj.selectedIndex=0;
}
</script>