Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /**
  2. * Rewrite get_the_posts_pagination
  3. */
  4. add_filter('navigation_markup_template', 'my_navigation_template', 10, 2 );
  5. function my_navigation_template( $template, $class ) {
  6. return '<div class="pagination">%3$s</div>';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement