Skip to content

Instantly share code, notes, and snippets.

@inoirman
inoirman / wp-pagination.php
Last active August 29, 2015 14:25 — forked from isGabe/wp-pagination.php
WordPress: Pagination #snippets #WordPress
<?php
// Numeric Page Navigation
function bones_page_navi() {
global $wp_query;
$bignum = 999999999;
if ( $wp_query->max_num_pages <= 1 )
return;
echo '<nav class="pagination">';