在我的默认日历小部件上,我得到:
<td id="today">30</td>
所以你可以
#today
.
它使用get_calendar()
具有以下功能:
if ( $day == gmdate( \'j\', $ts ) &&
$thismonth == gmdate( \'m\', $ts ) &&
$thisyear == gmdate( \'Y\', $ts ) ) {
$calendar_output .= \'<td id="today">\';
} else {
$calendar_output .= \'<td>\';
}