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:
parent
065e4cba61
commit
9c24e72550
|
@ -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>";
|
$page_links[] = "<a class='page-numbers' href='" . esc_url( apply_filters( 'paginate_links', $link ) ) . "'>$n_display</a>";
|
||||||
$dots = true;
|
$dots = true;
|
||||||
elseif ( $dots && !$show_all ) :
|
elseif ( $dots && !$show_all ) :
|
||||||
$page_links[] = '<span class="page-numbers dots">...</span>';
|
$page_links[] = '<span class="page-numbers dots">' . __( '…' ) . '</span>';
|
||||||
$dots = false;
|
$dots = false;
|
||||||
endif;
|
endif;
|
||||||
endif;
|
endif;
|
||||||
|
|
Loading…
Reference in New Issue