I think you’re on the right path with posts_where
, something like this should work:
<?php
function my_filter_where($where){
global $my_current_id;
$where .= " AND ID >= ".$my_current_id;
return $where;
}
// random number I chose for sake of example
$my_current_id = 30;
add_filter('posts_where', 'my_filter_where');
$my_posts = new WP_Query("posts_per_page=5&orderby=ID&order=ASC");
remove_filter('posts_where', 'my_filter_where');
Related Posts:
- Using ajax with paging and a custom sub-query
- How to Get All Posts with any post status?
- query_post by title?
- Order by meta value or date?
- Display posts of the last 7 days
- Filtering posts by post meta data
- How to query_posts using meta_query to orderby meta_key AND have a secondary sort by date?
- Help to condense/optimize some working code
- query_posts exclude a meta key
- Modify main WordPress loop with a parse_query filter
- How to make “sticky” pages (and query by them)
- Problem with ‘post__not_in’
- Sort posts alphabetically by custom field value, insert divider between different letters
- using post__in allow duplicate post id
- Use union/intersection query_posts variables in uri request parameter form?
- query_posts doesn’t order by title
- Custom query with query_posts doesn’t show post without certain meta_key
- How to sort by meta value?
- pagination in author.php template returns 404 error
- query recent posts from several categories
- Post count per (day/month/year) since blog began
- Example Query Posts Showing the Latest Post with the Featured Image
- Dynamically excluding current page id
- How do i paginate query_posts with numeric pagination?
- How to order results by date and meta key?
- Sort Posts by Multiple Meta Values [duplicate]
- Querying posts with meta value that begins with a certain pattern
- posts_per_page => 1 shows 2 posts
- Show individual author rank from query of cumulative post view count for all authors
- Custom posts per page does not work with pagination
- Static Front-Page Excerpts
- How to reverse the order of WordPress blog posts?
- posts_per_page override by default settings
- How to paginate posts correctly that belong to a particular category and are random ordered
- Tricky WP Query
- tax_query operator woes
- How can i display the posts per week in a particular month?
- How to filter query to display posts from parent category only?
- Display random post on a page with post permalink in URL
- WordPress pagination with get_posts?
- Two loops, one AJAX loop, exclude posts in first loop from second loop, loops are in different files
- ACF Query meta_values don’t work with ‘offset’
- Frontend Post with JQuery AJAX to Php Issue
- How to retrieve an array of post IDs by a particular value stored in a custom meta’s array
- Random ajax load only works with posts_per_page set to -1
- Query a WordPress page by its title (which has a parent page)
- Passing a varible from jQuery to PHP
- define orderby URL with meta_key=post_views_count
- Query_posts and attachments
- Custom loops, sticky posts, and pagination nightmare
- Querying posts only if the current page is not paged?
- post_parent array doesn’t work
- number of posts per page + random + exclude categories
- how to store wordpress loop in array?
- meta_query check for meta value in key which holds an array of values
- Exclude posts by post meta value
- How to place an image after Nth number of posts in query_posts
- Related Posts: Notice: Undefined offset: 0
- Single-page wordpress theme navigation
- meta tag placement for google verification
- When to use WordPress loop or Foreach loop?
- Can’t get pagination to work for sticky posts only
- show x number of posts from y category on homepage
- How to Show Comment Count on Related Posts?
- How can I show only 5 posts from the relationship?
- Frontend form with multiple posts
- Way to cache a query for 24 hrs
- Make query_post category name dynamic
- How can I list posts with different formats depending on order?
- query_posts orderby postmeta [closed]
- WordPress Query based on random taxonomy
- Displaying and Querying Posts with Featured image
- View Achive with Category Filter, but Page per post not working
- Meta query stopped working
- Sticky posts don’t show up first in custom loop
- Want Page Descendants when using query_posts post_parent or child_of
- grab neighboring content in a query
- Querying a query
- How do I query based on the modified date?
- Is there any way of only retrieving posts with one or more thumbs up (GD star rating plugin)?
- How to setup blog page to render blog posts minus afew categories
- Trying to list years (for a filter) but not all years display
- How to put orderby on a custom field in query_posts
- wp_remote_post and form post
- Filter posts by current date ( WP Post Carousel )
- Sort Posts By Custom Field Date
- Custom query posts error
- wp_query by last month + sort posts
- query_posts not working after wordpress 3.7 update
- Post Filter clearing on pagination $_post
- Is that the query_posts() the real criminal here?
- Query specific posts from parent by slug rather ID
- How to limit the number of posts on the home page?
- Query posts in a category and include only one post per author?
- query_posts and sub pages?
- How to refine WP-Query with further criteria
- Multiple loops with / without sticky posts and different post limits
- prevent display duplicate titles on main page
- Lots of SQL queries
- Limiting the amount of posts this displays