Skip to content

Instantly share code, notes, and snippets.

@x-genki

x-genki/*.php Secret

Created August 27, 2022 06:55
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 x-genki/1cb3768c20613d317fd90bfce47840f6 to your computer and use it in GitHub Desktop.
Save x-genki/1cb3768c20613d317fd90bfce47840f6 to your computer and use it in GitHub Desktop.
`paginate_links` を使ったページネーション
<div class="pagination">
<?php
if ($the_query->max_num_pages > 1) {
echo paginate_links(array(
'base' => get_pagenum_link(1) . '%_%',
'format' => '?paged=%#%',
'current' => max(1, $paged),
'total' => $the_query->max_num_pages,
'prev_text' => '<',
'next_text' => '>'
));
}
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment