Consider using the is_home()
conditional tag to check whether or not the home page is being displayed or not.
<?php
if ( is_home() ) {
// This is a homepage
// Do your fancy loop here with extra bells and whistles
} else {
// This is not a homepage (i.e. paginated page)
// Do a stripped down version of your loop above with no bells and whistles
}
?>
Reference to is_home on the WordPress Codex
Related Posts:
- Problem: ( kriesi ) pagination doesn’t work in homepage [duplicate]
- 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?
- Show content based on page number
- 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?
- Create custom page templates with plugins?
- Is it possible to paginate posts correctly that are random ordered?
- Custom templates not showing up in template dropdown
- How to determine if I’m on the first page of pagination?
- Changing pagination list class
- How to determine if theres a next page
- WordPress /page/2 404 pagination problem – what to do?
- Paged posts – how to use numbers and next/previous links?
- Why do you need an unlikely integer in paginating?
- How to display pagination links for WP_User_Query?
- How can I load a page template from a plugin?
- How to show a single post on the front page but have normal paging?
- Is there a WordPress plugin that registers a plugin file as a custom page template?
- How to add CSS Class to previous_post_link or get previous/next post link URL
- Page editor missing Templates drop down
- Is it possible to stop selected plugins from loading on certain template pages?
- Passing parameters to a custom page template using clean urls
- Pagination resolving to first page only
- how to get pagination link url?
- How to edit contents of dynamic_sidebar()?
- add_rewrite_rule – working fine but broken for pagination
- How to get the number of Pages in a single Post Pagination?
- How to move page templates to custom folder?
- Setting a custom sub-path for blog without using pages?
- Ways to have multiple front-page.php templates that can be swapped out?
- Aggregate comments, with pagination
- How to get IDs for objects in menu branch?
- post pagination names, not numbers
- How to fix pagination after rewriting url? ie. www.site.com/players/type/pro/page/3/
- Display “Page 3 of 5” for a paginated post
- Is it possible to manipulate the list of page templates?
- Add Content to Page without shortcodes
- Implementing a general Table of Content across single paginated post pages
- Using a page template without a page
- Paginate links with “ugly” and “pretty” permalinks?
- Pagination of RSS2 feed
- Loading custom page template via plugin
- Strange paginate_links behavior. First page link is always whatever page I’m on, all other links are correct
- I put my blog on a subpage, how do I get page title?
- Create built-in pages without creating actual pages
- Custom WP_Comment_Query with pagination and orderby?
- Check if a menu is empty?
- Pagination: How do I always show ‘previous’?
- Next/Previous Links in same category
- How To create ajaxed wp-pagenavi?
- Static Frontpage Pagination – Custom loop
- Single Page View for Paginated Posts
- How can I see all of a post’s comments on a single page as a reader, if pagination is enabled?
- Using paginate_links() to generate “1, 2, 3 … 10, 20, 30, 40… 55” paginations
- How to quickly switch custom post type singular template?
- Change class=”page-numbers” in pagination
- Check if on last page of paginated post using wp_link_pages
- Limit number of pages that use a specific template?
- How to hide/redirect the author page
- Varying the number of posts per page from the first one
- Using pagination with get_posts on page type
- Is including the loop necessary for page.php? [duplicate]
- List posts based on first letter of posts
- Pagination for sub-pages
- Need to give custom page template for each language in WPML
- Modifying WP_LIST_AUTHOR Functions to output all users in a grid (and Paginate)
- How to get post pagination like this
- How to paginate a list of tags
- Pagination Not Displaying on Custom Term Archive
- Non existing blog pages are not redirected to 404
- posts_per_page & pagination conflict
- How to implement pagination eg. newer – 3 – 4 – 5 – 6 – 7 – older
- Posts in Multiple Columns and Rows with one single loop
- How do I sort multiples pages?
- Remove navigation from header in custom page template
- Custom loop pagination issue ( pagination not showing up )
- Templates & CSS – Proper Programming Practice?
- WordPress pagination on custom script
- Combining WordPress pagination functions for archives and search results
- Pagination is not working wp_query custom fields values
- Broken pagination
- Pagination on a custom page template
- Passing custom args in paginate_links
- Limit number of pages in pagination
- wordpress Static Page pagination
- Static front page with recent posts pagination
- How to ignore or disable nextpage tag?
- Creating a custom category page with pagination
- page_template toggle between 2 templates + 2 permalinks for same post
- Paginate tags page
- pagenavigation not showing the next page just linking back to the main page [closed]