Guest User

Untitled

a guest
Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. if($totalPage > 1){
  2. $customPagHTML = paginate_links(
  3. array(
  4. 'base' => add_query_arg( 'cp', '%#%' ),
  5. 'format' => '',
  6. 'prev_text' => __('Back', '«'),
  7. 'next_text' => __('Next', '»'),
  8. 'total' => $totalPage,
  9. 'current' => $page,
  10. 'type' => ''
  11. )
  12. );
  13. }
  14. echo $customPagHTML;
  15.  
  16. $query = "SELECT * FROM custom_table WHERE custom_table.id = '$id'";
Add Comment
Please, Sign In to add comment