You set offset
param, so paged
param is ignored 😉
From Codex:
offset (int) – number of post to displace or pass over. Warning: Setting the offset parameter overrides/ignores the paged
If you want to ignore most recent post in this query, you can achieve it in two ways.
1. Custom pagination.
$ppp = get_option('posts_per_page'); // or any other method to get your posts_per_page
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$args = array(
'offset' => 1 + ( $paged * $ppp ),
'cat' => -22,
'paged'=>$paged
);
2. Ignore first post
$most_recent_post_id = ...; // get the ID of most recent post
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$args = array(
'post__not_in' => array($most_recent_post_id),
'cat' => -22,
'paged'=>$paged
);
Related Posts:
- get_query_var( ‘paged’ ) not working outside of homepage
- Get the number of posts from the current page results
- Why does pagination always break when used on any form of a home page?
- Merged two WP_Queries, posts per page and pagination not working
- “paged” in WP_Query returns 0 posts
- Pagination on template page for custom query redirecting to index.php
- filter posts by meta key with pagination
- Why won’t my paged wp_query work? [duplicate]
- Pagination not working in secondary query
- Pagination when using wp_query?
- How can i retrieve default post per page value? from settings->reading. And total number of posts?
- Find out total number of pages in global query on archive page?
- Post_count only shows the number of results per page
- Multiple WP_Query loops with Pagination
- Pagination with custom SQL query
- WordPress Pagination Not Working – Always Showing First Pages Content
- get_query_var function not working at all
- Pagination on a WP_query not showing navigation links
- Different ‘posts_per_page’ setting for first, and rest of the paginated pages?
- How to paginate wordpress [gallery] shortcode?
- Pagination returns 404 after page 20
- paginate_links() adds empty href to first page and previous link
- paginate_links ignore my format
- Custom Taxonomy not working with posts_per_page in new WP_query (pagination problem)
- Combining two wordpress queries with pagination is not working
- Custom WP_Query order by post_meta and (author) user_meta
- How to paginate attachments in a secondary query as gallery?
- Pagination with WP_Query is buggy – working for some pages, but not the others
- WP_Query and Pagination on a Static front page
- next_posts_link not working for loop called with ajax
- Query causing load because of SQL_CALC_FOUND_ROWS post counting?
- Pagination with 5 posts per page
- Pagination shows 404 after a certain number of pages
- Pagination custom query
- Pagination not working for Custom search form & custom result template
- Pagination/infinite scroll with WP_Query and multiple loops
- How to adjust found_posts so that it accounts for offset and pagination
- Pagination broken when merging search results with additional WP_Query
- WP_query and pagination?
- pagenavi with merged wp_query [duplicate]
- Add and in the header while looping over custom query in page template
- pagination doesn’t show up for custom post type
- Pagination causes error 404 when used with front-page.php
- Paginated pages are showing correct content but pagination links are not
- Query with pre_get_posts to get pagination
- Pagination wont work with search results template [duplicate]
- Pagination Not working on Home Page with 2 Query
- Best Practice For Querying Grandchildren?
- Pagination not working on static page
- Display different number of posts from one category on the different pages
- Using next/previous_posts_link with customised search
- Pagination not working Search posts
- Pagination not working for category posts
- Pagination is not working using WP_Query
- WP Query with offset breaks wp_pagenavi or any pagination
- Search – Ajax – Alter Query Parameters with Pagination
- Two queries on the same page with pagination
- Transient pagination not working properly
- Injecting content with $wp_query->current_post restarts from zero on paged pages. How to inject content after X posts, regardless of pagination?
- Show single post then all posts (with pagination)
- Is there a PHP function that can match anything after the given URL, so my IF statement will work in each instance?
- Add custom search results to main WP search [duplicate]
- Woocommerce custom loop to show all the products [closed]
- How to bring specific post to front of wordpress loop?
- Pagination for custom query on single.php
- $wp_query->current_post restarts from zero on paged pages
- Pagination doesn’t work in custom page template [duplicate]
- Intentionally exceed max_num_pages on main query without getting 404?
- WP_Query pagination not working in admin area
- Pagination 404 errors for author posts query on author.php
- WordPress pagination link always leads to home page
- WP_QUERY loop, offset in the arguments and the paginate_links – can these work together?
- Pagination problem after WP_Query with tag filtering
- Too many posts cause slow load when paginating
- Pagination stops at page 6
- Paginated HTML Sitemap
- How to output different posts per page?
- Multiple WP_Query loops with Pagination Not Working
- Posts loop with pagination on a single post page
- Custom pagination with WP_Query generating 404 error
- Pagination working everywhere but the index page
- Using $paged redirects /page/2 to page 1
- Create ONE callback for all page templates, post filter queries + paginated pages, triggering pagination via AJAX
- WP_Query ajax loader detect end of posts
- Offset Page Loops and Pagination
- Pagination is broken and I need help fixing it
- Pagination on category page with custom post types
- Storing query variable and then using wp_reset_query
- Pagination of a WP_Query Loop in a child-page page template
- WP Pagination on Posts Search Results Page resulting from AJAX WP Query
- Create A Loop With A Variable Number of Posts For Each Bootstrap Row?
- How to set pagination to work with ‘/page/’?
- Five posts from a category in footer
- The pagination on index.php doesn’t work on a first page
- paging in WP_Query on static page
- Get pagination working for custom loops within page templates
- WP_Query Pagination on multiple-loop page breaks WP or doesn’t show up
- WordPress Pagination changes my template
- wp_query ‘s’, search filter with pagination is not working
- pagination with ‘no_found_rows’ => true,