Current post page can be detected using get_query_var('page');
.
note that if you do not pass any page the page 1 is shown, but get_query_var('page');
will be 0
;
So in your function.php
you can add:
function get_page_image() {
global $post;
if ( ! is_object($post) || ! isset($post->ID) ) return;
$page = get_query_var('page');
if ( empty($page) ) $page = 1;
$field = 'image_' . $page;
return get_post_meta($post->ID, $field, true);
}
Related Posts:
- Problem: ( kriesi ) pagination doesn’t work in homepage [duplicate]
- Custom Page Template for “Older Posts” Pages
- Next & Previous (Pagination in this case) Not Appearing
- Pagination stopped working after assigning custom page template to new page (different slug)
- Adding pagination on template page wordpress
- How do I make my pagination work?
- Remember form field values with page navigation
- Customizing Latest Post Pagination
- Page navi for template page
- Pagination is not working in custom page template
- get_posts custom paging
- Only show pagination when post count exceeds show post
- pagenavi shows a lot of pages calculated from all posts in the site with query_posts
- Separate page for pagination possible?
- Why do you need an unlikely integer in paginating?
- How to get the number of Pages in a single Post Pagination?
- Paginate links with “ugly” and “pretty” permalinks?
- Next/Previous Links in same category
- How To create ajaxed wp-pagenavi?
- Using paginate_links() to generate “1, 2, 3 … 10, 20, 30, 40… 55” paginations
- Combining WordPress pagination functions for archives and search results
- Passing custom args in paginate_links
- Paginate a list of users?
- Allow Users to Choose Pagination or Next/Previous (Combine)
- Pagination & get_pages?
- Pagination that includes “view all on one page”
- Custom page-links for paginated posts | wp_link_pages quicktag
- Jetpack plugin – ‘posts_per_page’ not overriding ‘Blog pages show at most’ option, also different values for different post types?
- Pagination with get_posts seems to work but links not showing
- How to let crawlers search paginated comments?
- In pagination, change link for page 1 to homepage
- Skip first post on Category Archive
- How do I insert CSS into a function?
- How to make multiple page out of one post
- wp_list_categories pagination
- Insert pagination links – wp_link_pages() – before filters on posts
- Remove h2 Tag in screen_reader_text
- Pagination for multiple queries for different authors on author.php
- WordPress 5.5 breaks pagination in an older plugin
- How to get “nexepagelink” and “previoiuspagelink” in wp_link_pages?
- Paginate Pages by only showing 3 pages at most
- Using Pagination with Timber Routes
- Is it possible to have pagination with an offset loop?
- Authors list Pagination?
- Archive page pagination links redirecting to home page instead of going next page
- Exclude certain post formats from pagination
- How to use pagination on costum post type
- How to make WP Query Pagination work
- WordPress Gallery shortcode with pagination
- Archive pagination not working
- Wp pagination for custom database table
- How to customize wp_link_pages()?
- How to implement a slideshow on WP similar to these examples?
- Check if “Break comments into pages” is selected
- Custom posts not paginating on archive page and returning 404
- Woocommerce products per page dropdown
- WordPress Pagination is not shown
- Show multiple next and previous posts
- How to add pagination to category templates
- Make posts_per_page value the same on all pages
- Page not found yet the posts are listed?
- Search URL redirect problem
- split wordpress loop into columns of categories and associated posts
- Adding pagination to a custom template that uses custom post types?
- Why are my paginated result links not working?
- Pagination don’t list all entries on Index.php
- Problem with custom loop navigation inside the blog page
- WordPress default gallery pagination when in page (is_page)?
- How do I hide a Gutenberg block when paginating
- Understrap Custom Pagination
- Pass global variable from Page 1 to page 2 (Pagination)
- How to remove url from omission dots in WordPress pagination?
- Pagination not working on archive.php
- Pagination not working in custom post type but perfectly in posts
- Pagination 301 redirecting page 1
- change pagination url
- Using the_posts_pagination with offset adds extra empty page
- Creating a Back button on detail post page to go back to blog page with same query strings and page id
- page/2 not working in wordpress it showing 404 page erorr
- How to implement pagination eg. newer – 3 – 4 – 5 – 6 – 7 – older
- Extra pagination pages being wrongly generated
- 404 Error on pagination with WP Query
- What is wrong with my code ? pagination does not show up
- Pagination re-direct to main page [duplicate]
- Paginating custom posts in categories yields a 404 error
- Using WP_List_Table and search_box(): How to Paginate the Found Search Results When Sending by Method «Post»?
- URL rewrite function and pagination with year in the url
- How do I make pagination_links show as 01 02 03, instead of 1 2 3?
- wordpress pagination problem with page templates
- Paginate WordPress Category Pages
- Pagination for custom post type not working [duplicate]
- How do I paginate a custom post type listing on a custom template page?
- Pagination with wp_pagenavi not working on custom page
- how to apply Pagination on post
- Add Pagination in custom loop
- Custom Post Type Pagination For Genesis Child Theme [closed]
- Modifying previous_posts link to use AJAX
- paginate_links with select option
- Stop pagination when static homepage is set
- Is ‘pm’ used by core?