Currently from your code I can see you are looping for post IDs from 1 to 1000 that isn’t good. WordPress have lot of functions by which you can fetch post IDs, content and other information. One of them (according to your need) is get_pages()
Check the documentation of get_pages()
there are lot of examples.
See the Example from above code:-
$all_pages = get_pages(array(
'number' => -1
));
foreach ($all_pages as $page) {
$rows = get_field('about_hotel', $page->ID);
if($rows) {
echo '<ul>';
foreach($rows as $row)
{
echo '<h1> ' . $row['hotel_name'] . '</h1><br/>'.'<p>' . $row['hotel_description'] . '</p>';
}
echo '</ul>';
}
}
Related Posts:
- ACF to select posts not displaying on blog page
- How to display post list in a table layout (multiple queries in single loop)
- If custom field is empty, use one from a previous post
- ACF flexible content block not showing on live site (works locally)
- How do I show the post title if an advanced custom field hasn’t been used?
- Custom post order returning posts from other categories
- How set featured posts using checkbox in post edit screen?
- Do we still need to include a “if (have_posts())” in templates?
- Query *only* sticky posts
- Cannot access current post’s ID in custom plugin
- Can’t show comments count per post outside loop
- Show a list of recently viewed posts to a user
- Alternate custom content in the loop
- Showing random content / pictures from earlier posts in a sticky post?
- Auto Refresh Post List after X seconds
- Display posts with comments closed, with pagination?
- Related posts loop based on tags AND categories doesn’t work without at least one tag assigned
- Guest Author – How to display posts on /author/ archive page
- How To Get Posts With A Specific Word
- How to display posts on a static page? (like search loop)
- Why WP_Query(‘showposts=5’) shows only 1 post?
- Displaying Latest Posts on a Page
- Display all posts that were published before full post on single.php
- WordPress Loop – Next 3 Posts
- problems with loading posts in a table-row
- Blog page pagination is not working after using the offset argument
- WP Query – Posts Per Page not working in combination with category__in
- More then one menu items are assigned with “current-menu-item” class
- Pulling in post category and children within category
- How to add tags (custom taxonomy) to post class css?
- Listing Specific Categories from Current Post with Depth
- How to exclude visited posts from loop
- Only display sticky post or latest post in custom loop
- get_the_category listing in hierarchial order
- Exclude current custom post on single post
- add to end of post in the loop with plugin
- Grid post page on WordPress with Bootstrap, the_excerpt(); Problem
- Loop parent terms {display posts} AND loop child terms {display posts}
- Custom taxonomy archive page problem
- Loop don’t work within single.php page
- Add custom text automatically on each post
- Getting blog pagination to work on page set as front page
- Make loop inside slider divisible [closed]
- Display current post position in Elementor Posts widget
- Update post meta within save_post action
- Saving Post Data in Another Database
- Not all posts showing in query
- WP_Query custom field pass the post id
- Some doubts about how the loop work (trying debugging it)
- Get post category as a separate string and url
- Limiting the amount of posts retrieved by the loop
- Display 3 posts with different HTML markup using a loop
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- I can’t find the relevant part of the loop in my theme file. How do I find the full content with “More…”
- How to repeat a loop after 4 posts [duplicate]
- How to separate each individual blog post?
- How to show full post on home page
- Is there a way to define the $post var outside the loop?
- Only the most recent post is showing on my category page (working on localhost, not live site)
- ACF date picker to trigger category change
- How to work with posts and sub posts?
- How to show post views shortcode data for each post on Posts List Page?
- Need to display a Jan 1st post as the site’s front page on Jan 1st, and Jan 2nd post as front page on Jan 2nd etc
- Assign a day of the week to post, e.g: Assign Monday to post and have it only appear when the day is Monday
- How to show category image if no featured image is set?
- Get post id outside loop : Notice: Trying to get property of non-object
- Retrieve posts inside foundation tabs and tab-content split by 3 per row
- Can I Paginate Post after every 25 tag?
- Post being duplicated with foreach loop
- Alternative content between posts no repetition
- Start loop from specific post ID
- Display new posts categories in separated divs
- Custom post type – Loop out in random order but same 15 to appear first… still random
- WordPress infinite post cycle
- How to control Post view count incresing in sidebar widget posts too?
- Auto populate custom fields by post date
- ACF Relationship – Get Parent’s Post Object
- WordPress loop uses unmodified posts array, why?
- Add row after three columns
- Modify WordPress loop after it has been run
- Skip posts, but keep posts per page
- Multiple Post Repeat for Related Post Loop by Category
- index.php is only displaying current month’s posts?
- Loop doesn’t display posts. It displays a link to the home page instead
- Grab next post title in archive page
- Where should get_post_meta() go to get $post->ID get_post_meta() is empty and $post->ID & get_the_id() are working
- Getting posts from multiple users?
- Loop through posts by each term and exclude duplicate posts assigned to several terms
- Show post if in category
- Displaying categories items among posts
- Styling first post using Advanced Custom Fields
- Only show posts with image and the correct ammount of posts in loop
- Related posts by searching post tags of single post as terms
- Show all posts in category
- First post in loop displays twice
- Wrap every 2 posts
- How to make a local “scroll to ID” on post?
- What function does the loop of displaying posts?
- What template file is used by default for posts?
- How to make internal links creating plugin to respect ACF?