将以下函数放入functions.php
function wpse_62509_current_month_selector( $link_html ) {
$current_month = date("F Y");
if ( preg_match(\'/\'.$current_month.\'/i\', $link_html ) )
$link_html = preg_replace(\'/<li>/i\', \'<li class="current-month">\', $link_html );
return $link_html;
}
然后在调用之前添加以下行
wp_get_archives()
add_filter( \'get_archives_link\', \'wpse_62509_current_month_selector\' );
您可能还想在调用后删除筛选器
wp_get_archives()
这样就不会影响其他人
wp_get_archives()
或
get_archives_link()
函数调用。
remove_filter( \'get_archives_link\', \'wpse_62509_current_month_selector\' );