Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created December 22, 2017 19:08
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 braginteractive/a1be397e4423126f0ffa52b9b569a54f to your computer and use it in GitHub Desktop.
Save braginteractive/a1be397e4423126f0ffa52b9b569a54f to your computer and use it in GitHub Desktop.
Font Awesome Posts Pagination for WordPress
the_posts_pagination (
array(
'prev_text' => '<i class="fa fa-arrow-left" aria-hidden="true"></i><span class="screen-reader-text">' . __( 'Previous Page', 'textdomain' ) . '</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next Page', 'textdomain' ) . '</span><i class="fa fa-arrow-right" aria-hidden="true"></i>',
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment