WP Plugin Manager: 有 One Click Install 的方便功能
http://wp-plugins.net/GaMerZ » Portfolio » Programming
http://www.lesterchan.net/portfolio/programming.phpAsymptomatic
http://www.asymptomatic.net/wp-hacks
CSS – 日曆:標示今日
*style.css*
#wp-calendar #today {
background: #FF9933;
color: #FFF;
}
今天的日期會有背景色 highlight~
下拉選單 – 每月文章
*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>