Last active
May 7, 2019 05:29
-
-
Save NatalieMac/b83de7fdc9cf5ac1b1e45b60a0f61f30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav aria-label="<?php esc_attr_e( 'Pagination', 'my-text-domain' ); ?>"> | |
<?php echo paginate_links( array( | |
'type' => 'list', | |
'prev_next' => true, | |
'before_page_number' => '<span class="screen-reader-text">' . __( 'Page', 'my-text-domain' ) . '</span> ', | |
'prev_text' => '<i class="fas fa-angle-left"></i><span class="screen-reader-text">' . __( 'Previous page', 'my-text-domain' ) . '</span>', | |
'next_text' => '<i class="fas fa-angle-right"></i><span class="screen-reader-text">' . __( 'Next page', 'my-text-domain' ) . '</span>', | |
) ); ?> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment