Here’s one way by using wpdb::get_col()
and fetch the id
column:
$pids = $wpdb->get_col( "SELECT id FROM my_table" );
We could then clean it by integer convert each id with:
$pids = wp_parse_id_list( $pids );
Just note the different max value for intval()
, depending on 32 or 64 bits systems.
Related Posts:
- WP_Query to work with custom view
- Replace Main Query With Custom Query
- How to do set post permalinks using 6 digit random unique function?
- wp_posts table: safely remove unused columns to save database storage
- Why Query is returning empty array?
- meta_value timestamp older than now
- WP_Query post_tilte search in posts table
- Adding additional data to WP_Post object
- WP_Query: Why is sticky post not first item in loop?
- Displaying the category name of a custom post type
- How do I reorder (pop and push) items from WP_Query?
- How to exclude latest x posts from a paginated query?
- Reverse chronology of post listing
- WordPress Number of Posts Not Changing With posts_per_page
- How to add posts to wp_query result?
- Posts for next month
- Exclude posts with specific meta_value while sorting by a separate meta_value
- WP_Query only ONE post, won’t work
- Unable to modify(update) posts – Page not found
- Display the latest posts, published in the last hour, with WP_Query
- Fetch posts from current week (Sunday to Saturday)
- Hiding posts in a list from specified categories
- Converting multiple loops into one single loop with pagination
- Group posts by year in loop
- How would I get 1 latest post from a query for 5 posts?
- How to get posts by multiple post slugs? [duplicate]
- WP_Query do not load specifed number of post
- WP_Query: offset ignored when posts_per_page is -1?
- Exclude posts with empty post_content in wp_query
- Exclude posts from featuring
- Lazy Load using WP_Query pagination
- AJAX filter posts by year
- How can I remove posts of a certain category from homepage after a specified time period?
- Should $found_posts be returned as string in ‘found_posts’ filter hook?
- Get random posts between specific dates / of specific age
- Yearly archive page for future year
- Display post from current category and same tag?
- WP_Query orderby not working with meta_value_num and menu_order
- Custom WP_Query with complex ‘post_status’ argument
- is there a way to show the the post title after the image?
- How do I correctly set up a WP-Query to only show upcoming event-posts?
- Blog post per page setting conflicting with custom WP_Query?
- How to filter my search in post if contains a word in title, content or excerpt?
- How to return another post than requested
- Select only post id and meta value with WP_Query
- Random ajax load only works with posts_per_page set to -1
- Query posts and return XML
- Query Posts With Over 1000 Views
- Adding a blog archive with pagination using WP_Query
- How to get Tags with specific post id
- Show post content and title in diferent divs using WP_Query using a loop
- Show posts by author of membership level (Paid Membership Pro)
- Why posts array is empty?
- Page and post loop same template
- How to check in functions.php if there is data in a WP_Query?
- How can I insert a new markup element after 4 posts automatically? [closed]
- If no posts exist for current day and month, show the next available day of posts
- Related Posts function not working
- how to handle the loop using filling bootstrap grid structure?
- Query function not executed between element [closed]
- Custom WP_Query not working correctly
- Echo the number of posts being displayed
- remove all custom post created
- Creating a related posts section in wordpress inside a default post
- How to display WP Query filters?
- Finding a post’s slug
- Is there a function to get post info for any publish_status by post ID?
- How Can I Always Display A Particular Post First Using WP_Query?
- Optimal WP Web App Backend for mobile app development
- How do I display main query posts in random order using add_filter
- Why sorting posts doesn’t work properly?
- the wp_post_update isn’t working all the time
- Display specific posts based on an ID of another post
- query posts with selected post ids first
- Change URL of previous posts and next posts link in WordPress
- Order posts inside bootstrap card columns
- long-title posts do not want published
- How to get value of a selected option from select tag and use it in WP_query to filter posts?
- Counting Posts by Category
- show image gallery in archives or category page
- Page with Category Returning 1
- wp_query args with relation
- WP_Query sort by meta_value_num or date
- Get 5 most recent categories
- Creating Ordered Query using Meta_key
- I am not getting result from php function that is json encoded
- WP Query between posts custom fields [duplicate]
- Retrieve latest post by multiple categories with ID
- Update Post with Modified Data
- How to Include a common category in a custom Category Search
- wp_query select if have comments
- wp_query posts sorting doesn’t work
- Order by ‘s’ using WP_Query()
- custom sort posts in archive/taxanomy page
- how to print loops for odd in 1st column and even in 2nd column in wordpress [closed]
- Trying to create shortcode listing custom posts, but formating not being included
- Show Title/Date/Excerpt of first post & only Title for rest in Query [duplicate]
- Get posts after calculating meta key
- Next and Previous buttons are not showing on home page for post
- Get related posts matching most of the provided tags using WP_Query