Instead of using the global variables directly, here’s a way to use the content_pagination
filter to add custom HTML to the last content page:
/**
* Append HTML to the last content page, if it's paginated
*/
add_filter( 'content_pagination', function( $pages )
{
if( count( $pages ) > 1 )
$pages[count($pages)-1] .= '<div>MY HTML HERE!</div>';
return $pages;
} );
This appends the custom HTML to all last content pages, where there is content pagination.
Update: To include posts without content pagination, we can e.g. replace > 1
with > 0
.
Related Posts:
- How to make multiple page out of one post
- Changing pagination list class
- How to show a single post on the front page but have normal paging?
- How to add CSS Class to previous_post_link or get previous/next post link URL
- Pagination resolving to first page only
- Aggregate comments, with pagination
- Pagination of RSS2 feed
- Strange paginate_links behavior. First page link is always whatever page I’m on, all other links are correct
- Modifying WP_LIST_AUTHOR Functions to output all users in a grid (and Paginate)
- How to implement pagination eg. newer – 3 – 4 – 5 – 6 – 7 – older
- Problem: ( kriesi ) pagination doesn’t work in homepage [duplicate]
- How to ignore or disable nextpage tag?
- Category pagination shows same posts
- category/category_name pagination 404 error
- get_query_var(‘paged’) giving same result
- Show content only on front page?
- Show next / previous text (button) all the time
- Pagination difficulty using custom query in genesis-based custom theme
- Placing Ads after every 10th Post with Infinite Scroll
- How to implement pagination in backward way eg. first – 20 – 19 – 18 – … – 3 – 2 – 1 – last
- Next & Previous (Pagination in this case) Not Appearing
- Limit Timber pagination number items
- List all posts by year with pagination
- WordPress wp_link_pages show only next/prev link
- Pass additional parameter in the URL
- Prev and Next link for splitting single post into multiple pages [duplicate]
- Pagination: /tags/tag_name/?paged=2 gives a 404 error
- Post timeline (pagination with date, not numbers)
- Why do next pages load the same content rather then older articles?
- Nested Pagination
- Pagination stopped working after assigning custom page template to new page (different slug)
- I want to remove numbers from the_posts_pagination function
- Yoast’s rel=“next” & rel=“prev” tag don’t work on static homepage’s paginated pages
- Pagination indication “/page/2/” are removed from url and auto redirect without /page/2/ : 301 redirection
- Pagination with no ‘page’ slug
- Using paginate_links() to generate “01, 02, 03, 04” paginations
- How do I fix this ‘Undefined variable:’ debug message?
- How do I paginate a list of categories?
- Authors list Pagination : result set from $wpdb->get_results()
- WP-PageNavi on Custom page template not working
- Paginated Archives or Loop by Month
- Pagination Not Working on `WP_Query` Archive Page
- How do I make my pagination work?
- How to use custom previous/next link ?
- How to paginate a list of child pages
- Show content based on page number
- Pagination issue in archive.php
- How to use pagination?
- How to get category/tag in URL for Pagination links?
- How to get rest api pagination headers via fetch
- Include a leading zero in pagination
- Pagination not work on page but work on category
- Custom category.php paging shows the same posts
- Pagination Links showing incorrect previous page number
- How to limit page pagination… again
- How to remove /page/2/ from home page?
- wordpress custom search page pagination returns 404
- Conditional pagination li’s
- Paginate Links – Mid Size Less Than 2
- Problem when I try to insert pagination
- Different page template for paginated content?
- tax_query does not work with pagination with custom query (both wp_query and query_posts())
- Pagination on WP_User_Query not updating current page
- Pagination for multiple queries merging into one Loop
- paginate_comments_links() not working
- Adding paging to get_posts()
- Can I paginate this get_attachment query?
- How to Show Next-Previous Link Only
- WordPress static home page pagination not working
- How to create a WordPress gallery with pagination
- Broken pagination links on WP 4.9.10 blog pages
- Excluding posts without affecting the number of posts per page
- get_next_posts_page_link adds Inexistent directories
- How to add post page pagination to template part?
- why pagination not working in page template
- Linking images in WordPress Paginated Post
- Set Pagination count according to post count
- Pagination in Archives
- load certain content only on first page of pagination
- Only show pagination when post count exceeds show post
- Pagination – linking back to base page – Page 1
- Custom Pagination shows same posts on each page
- Numbered pagination showing all numbers instead of paginated blocks
- Show next and previous page number
- Search pagination link redirecting to a link that doesn’t work with pagination
- Search URL gives 404
- How to paginate query using get_categories()
- Adding pagination to query for custom page
- Main page paginate_links issue
- WordPress creating 404s under blog tags
- Removing template part when not on homepage if / else
- Paginate template name
- Pagination work! But title still says “Page Not Found”
- How to reduce the number of pages in pagination
- foreach pagination
- Always show Next and Previous button in wp_link_pages ?
- paged query leads to 404? [duplicate]
- Pagination only working on index page not on a template page
- Separate page for pagination possible?
- Why does WordPress keep directing or forcing my pagination?