diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 392a6b5db..04fdd9552 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1563,7 +1563,7 @@ function get_previous_posts_link( $label = null ) { if ( !is_single() && $paged > 1 ) { $attr = apply_filters( 'previous_posts_link_attributes', '' ); - return '". preg_replace( '/&([^#])(?![a-z]{1,8};)/', '&$1', $label ) .''; + return '". preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&$1', $label ) .''; } }