WordPressのカレンダーの土日に色付け
2010年 7月 10日 (土) / AM 10:57
日曜始まりのカレンダーを対象
<script type="text/javascript">
$(document).ready(
function(){
$('#wp-calendar th:first , #wp-calendar tbody tr td:first-child:not(.pad)').addClass("sunday");
$('#wp-calendar th:last , #wp-calendar tbody tr td:last-child:not(.pad)').addClass("saturday");
});
</script>