Use hellip instead of poor man's elipsis in pagination links. props georgestephanis, fixes #19182.

git-svn-id: https://develop.svn.wordpress.org/trunk@19282 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-11-14 21:24:49 +00:00
parent 4ccbc50051
commit 668a850007
1 changed files with 1 additions and 1 deletions

View File

@ -1927,7 +1927,7 @@ function paginate_links( $args = '' ) {
$page_links[] = "<a class='page-numbers' href='" . esc_url( apply_filters( 'paginate_links', $link ) ) . "'>$n_display</a>";
$dots = true;
elseif ( $dots && !$show_all ) :
$page_links[] = '<span class="page-numbers dots">...</span>';
$page_links[] = '<span class="page-numbers dots">' . __( '&hellip;' ) . '</span>';
$dots = false;
endif;
endif;