Adding this code snippet to your WordPress theme’s archive.php template will display whatever the current page number is.
1 2 |
$current_page = max(1, get_query_var('paged')); echo $current_page; |
Adding this code snippet to your WordPress theme’s archive.php template will display whatever the current page number is.
1 2 |
$current_page = max(1, get_query_var('paged')); echo $current_page; |