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

git-svn-id: http://svn.automattic.com/wordpress/trunk@19282 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-11-14 21:24:49 +00:00
parent 065e4cba61
commit 9c24e72550

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;