Feeds for post types are called with feed/?post_type=POSTTYPE
. For no obvious reasons this doesn’t work for the post type page
– you get the posts instead.
But there is a filter to fix that: 'pre_get_posts'
. Let’s use it:
add_action( 'pre_get_posts', 't5_pages_in_feed' );
/**
* Set post type to 'page' if it was requested.
*
* @param object $query
* @return void
*/
function t5_pages_in_feed( &$query )
{
if ( isset ( $_GET['post_type'] ) && $_GET['post_type'] === 'page' && is_feed() )
{
$query->set( 'post_type', 'page' );
}
}
Now you get the page feed at /feed/?post_type=page
.
Here is a plugin for that: T5 Page Feed
Related Posts:
- Remove specific page/post from feed
- Add feed to a custom page
- RSS for Pages Instead of Posts?
- How to add pages to feed?
- Mailchimp RSS feed work with single wordpress page?
- Display child pages on homepage template
- Add infinite scroll to content splitted post
- Check if wp-login is current page
- How to get current page ID outside the loop?
- Contact Form on WordPress Sites?
- Page returns 404 with POST variables, but not without
- Custom templates not showing up in template dropdown
- Get page id by template
- Using pre_get_posts on true pages and static front pages
- Get the content of a specific page (by ID)
- Add Custom Fields to Custom Post Type RSS
- How to get page title with the page ID?
- Show more than 20 items in pages or posts edit dashboard
- Allowing user to edit only certain pages
- How to display last 3 posts (recent posts) in a static page?
- How to give paged links custom title?
- How to set post slug when using wp_insert_post();?
- How to show page content in feed?
- How can I keep the content of my pages version controlled?
- How to load javascript on custom page template?
- How to configure WordPress to handle 75,000 pages?
- How to update page status from publish to draft and draft to publish
- Check if is on child-page of a particular page
- Change page template programmatically ?
- Conditional tag to check if ‘page.php’ is being used?
- Customizing the URLs of WordPress Login and Sign-up Pages?
- Get all posts in RSS
- How to add post featured image to RSS item tag?
- How to disable posts and use pages only
- featured image as background image on pages
- Check IF is a “single product page” and Check the “role” for a Redirect
- A check for if is parent page, if has children, if has grandchildren
- How to get SimplePie fetch_feed without stripping iframe code?
- How to load JS and CSS only on specific Pages using is_page()?
- Listing pages which uses specific template [duplicate]
- Individual rss feed entry length for categories?
- Proper way to get page content
- Access the same page from multiple urls (wildcard)
- Create a page without adding a page in the Database
- Is there a way to change the default page template selection?
- Can I have two child pages of different parents with the same name?
- What methods to use to create small, editable pieces of text for static pages?
- Show Default Editor on Blog Page ( Administration Panel )
- Hide page visual editor if certain template is selected?
- What is the difference between $paged and $page?
- multi page password protection
- Create a “Dummy” parent page for a hierarchy in page listing?
- Remove or Edit in Feeds
- How do I convert a page’s title to lower case?
- Get top level page parent title
- How to add a specific widget to only 1 page?
- Restrict admin access to certain pages for certain users
- page title, parent tilte and grand parent title
- Cannot get add_feed to work
- How to add jQuery script to an individual page?
- How to Make a Separate RSS Feed for Each Custom Post Type
- WordPress page edit does not save selected template
- Should I provide RSS or Atom feeds?
- Add a Page without header and menus?
- What is an alternative to get_page_by_title()?
- Password protect page with multiple passwords
- How to secure or disable the RSS feeds?
- Create pages automatically if they don’t exist
- Find empty pages or pages which have less than x characters
- Allow only new sub-pages to be created
- Set page template automatically based on parent
- Editing Complex Pages in Visual Mode
- Link section within page with slash (/) and not hash (#) without reloading the page
- Creating a template using a specific slug name, for a page with a parent page
- Can I display submenus in groups, using wp_list_pages?
- Is there a default template file for child pages / subpages?
- Get wp_get_attachment_url outside of loop
- How to check if feed URL was requested?
- Order by menu_order and title?
- Require title for pages
- WP Page and Subdirectory with same name
- Replace Dashes Before Title in Page List
- Add a new page to wordpress programmatically
- Why does Simplepie return feed items in a wrong order?
- Get Permalink for the top level parent of child pages
- Proper method to restrict non logged users into certain pages
- How to create additional full text RSS feeds
- How to redirect on particular page in wordpress? [closed]
- Get page id by title?
- What is the use of $page_title and how to use it?
- How to embed page content in a blog post
- How can I generate a RSS feed based on a custom WP_Query?
- Can I display the widget admin in the page admin?
- How to add or remove metabox each page separately?
- Some pages are missing from the Parent Page select in the Editor
- WordPress parent select need to be removed
- Custom RSS feed forces download
- Manual excerpts for pages not working on Search
- Prevent WordPress from adding linebreaks to javascript embedded in a page
- How to get the specific Page’s current ID and use it in a get_page function?