Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@NatalieMac
Last active May 7, 2019 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NatalieMac/b83de7fdc9cf5ac1b1e45b60a0f61f30 to your computer and use it in GitHub Desktop.
Save NatalieMac/b83de7fdc9cf5ac1b1e45b60a0f61f30 to your computer and use it in GitHub Desktop.
<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