For skipping the post just use offset parameter in wp_query.
To display latest three post :
<?php
$latestpost = new WP_Query('order=asc&orderby=meta_value&meta_key=date&posts_per_page=3');
//Here add loop to display posts like
while($latestpost->have_posts()) : $latestpost->the_post();
the_title();
the_content();
endwhile; wp_reset_query();
//After that skip three posts using offset
$latestpost = new WP_Query('order=asc&orderby=meta_value&meta_key=date&posts_per_page=6&offset=3&paged=' . $paged);
the_title();
the_content();
endwhile; wp_reset_query();
?>
That’s it
Related Posts:
- The next_posts_link() works only with original $wp_query
- Pagination not working on Custom Page Template
- The next_posts_link() works only with original $wp_query
- Limit amount of pages shown in pagination within wp_query
- Automatically create pages in a post based on number of words
- Pagination for Pages and Posts
- Exclude posts with specific meta_value while sorting by a separate meta_value
- When paginating a Page with the tag, how can the 2nd and subsequent page styles be customised?
- Converting multiple loops into one single loop with pagination
- WP_Query do not load specifed number of post
- Lazy Load using WP_Query pagination
- Should $found_posts be returned as string in ‘found_posts’ filter hook?
- how to get posts ids inside pre_get_posts filter?
- Blog post per page setting conflicting with custom WP_Query?
- How to insert 2 args into 1 Wp_Query for a slideshow
- 301 (static page instead latest posts)
- How to : pagination in 3 different custom loops on the same page
- How safe is renovating $wp_query when doing WP_Query pagination in Page Template
- Exclude the first ‘n’ number of posts of a tag from home page?
- Start post pagination at 0 instead of 1
- Using wp_list_pages() after calling query_posts()
- Why are my paginated posts always returning the same results?
- Loop doesn’t exclude the specified category in home page
- Total number of posts in query (category/tag/author/search results/main page…)
- Why won’t pagination work?
- Getting blog pagination to work on page set as front page
- Use posts_where to exclude posts ids from wp_query
- Pagination for normal (standard) posts on a page with a custom loop?
- Manipulated offset and pagination, can’t display last post anymore
- Go back to the exact post page number
- Numbered Pagination Showing The Same Posts After Altering WP_Query
- How to create page with post content in it?
- Disable pagination in posts and pages
- Page with Category Returning 1
- Count posts for pagination
- Override wp_link_pages pagebreak with filter
- Is it possible to query a category with specified posts?
- Posts are not showing up on next page.
- Add wp-link-pages to post
- Pagination for custom query won’t let me back on page 1
- Can’t get pagination to work
- How to display a paginated list of posts from one category on a page? [duplicate]
- query_posts different amount of posts per page [duplicate]
- Parameter for pagination posts_pagination
- how to put post customized in page
- post and page and custom post type
- Mix post date with post meta value using WP_Query
- How do I customize the post page
- How to use two query result together in one loop
- Clicking on a Post takes 10+ seconds for the server to respond, Pages will respond immediately
- show loop id post , only first id can read
- How to display the pagination in my post list? [duplicate]
- Excluding category from post navigation in WordPress?
- How can I get the last post while on the first post for pagination? As if it were infinite
- How to get value of a selected option from select tag and use it in WP_query to filter posts?
- Show code only on WooCommerce Pages
- WP_Query that targets all categories
- Counting Posts by Category
- Fill the exclude array() in get_posts()
- show image gallery in archives or category page
- Single Sidebar; multiple templates! How?
- The first post appears twice
- Pagination (on the static front page) shows always the same posts
- Code to display random ordered posts in Categories across pages [duplicate]
- filter posts based on menu_order
- Show 5 posts and than 3 posts offset with pagination
- Very weird behaviour after removing WP pages
- Double loop output
- Custom permalink for wordpress page / post
- Get current_post in reverse order with pagination
- Multiple Pages – Seperate blogs
- Change archive results based on GET request
- Using WP page password protection as defacto login
- How to add post under particular pages? Like website.com/page1/post1
- wp_query args with relation
- Ajaxify Post Sort
- WP_Query sort by meta_value_num or date
- I lost the link to my posts in my menu bar
- calling pages instead of posts
- Category URL to use same string as Post URL Permalink
- WordPress display page information rather than post
- Post Category link is same with Page link
- Get 5 most recent categories
- Loop through all posts showing duplicates
- Can I Paginate Post after every 25 tag?
- WordPress for business site
- WP_Query extended with AJAX
- Manipulate query to show specific post
- Wp_query loop is not working as it should
- Get current user, change users post status to published
- Show all posts from the tags without having to set all of them
- Posts on Sidebar only
- Pagination for single post
- How do I make it so that new posts within a certain category go into a certain page?
- How do I set content in my pages so that it remains permanent while blog posts are added below?
- Permalink base only for posts
- WordPress text field in array problem
- Displaying a specific sub-category’s posts from wp_query
- Random order of the 5 most popular posts
- How to give priority to page than to posts permalink structure?