Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $product_view=isset($_GET['product_view']) ? $_GET['product_view'] : 'grid';
  2.  
  3. echo paginate_links(array(
  4. 'base' => add_query_arg('product_view', $product_view),
  5. 'format' => '',
  6. 'prev_text' => __('«'),
  7. 'next_text' => __('»'),
  8. 'total' => ceil($total / $items_per_page),
  9. 'current' => $page,
  10. 'add_args' => array(
  11. 'category' => 'fruit',
  12. 'color' => 'red'
  13. )
  14. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement