Skip to content

Instantly share code, notes, and snippets.

@na0x2c6
Created March 21, 2020 11:08
Show Gist options
  • Save na0x2c6/d9b6d7ac7cdbe8c692e149ba3434a0aa to your computer and use it in GitHub Desktop.
Save na0x2c6/d9b6d7ac7cdbe8c692e149ba3434a0aa to your computer and use it in GitHub Desktop.
WordPress: get the paged number
<?php
add_action('wp_head', function() {
$paged = get_query_var('paged');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment