但过滤器很糟糕,它只提供HTML链接:
add_filter( \'get_archives_link\', \'wpse74891_archives_link\' );
function wpse74891_archives_link( $link ) {
$link = preg_replace_callback( \'/>([A-Za-z]+\\s+\\d{4})/\', function( $matches ) {
return \'>\' . date( \'m.y\', strtotime( $matches[1] ) );
}, $link );
return $link;
}
使用此方法,您至少可以为链接传递任何想要的日期格式。