Title: JMB Post Feeds
Author: jmb272
Published: <strong>July 19, 2017</strong>
Last modified: July 19, 2017

---

Search plugins

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/jmb-post-feeds.svg)

# JMB Post Feeds

 By [jmb272](https://profiles.wordpress.org/jmb272/)

[Download](https://downloads.wordpress.org/plugin/jmb-post-feeds.zip)

 * [Details](https://co.wordpress.org/plugins/jmb-post-feeds/#description)
 * [Reviews](https://co.wordpress.org/plugins/jmb-post-feeds/#reviews)
 *  [Installation](https://co.wordpress.org/plugins/jmb-post-feeds/#installation)
 * [Development](https://co.wordpress.org/plugins/jmb-post-feeds/#developers)

 [Support](https://wordpress.org/support/plugin/jmb-post-feeds/)

## Description

Create post feeds in CSV, XML, RSS, Google RSS, Text & Custom formats.

Features:

 * Add your own custom format using the ‘jmb_pf_plugin_settings’ filter.
 * Filter & Refine search options to restrict the posts that appear in a feed.
 * Choose the post types to include in the feed(s).
 * Choose what formats to export a feed to.
 * Set a feed to update automatically whenever a post matching the feed’s criteria
   is updated.

## Installation

 1. Upload the plugin to the ‘/wp-content/plugins’ directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.

## FAQ

  Installation Instructions

 1. Upload the plugin to the ‘/wp-content/plugins’ directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.

  How do I create my own export format?

First, register your Export Format with the plugin like so:

 ‘Text 2’,
 ‘ext’ => ‘-text-2.txt’, ‘callback’ => ‘jmb_pf_text_2_format’, );

 return $settings;
 }); ?>

Then create the Export Function that takes the feed data and exports it to a file,
like so:

 ”,
 ‘posts’ => array(), ), $args );

 if ( empty( $a[‘posts’] ) ) {
 return; }

 $text_content = ”;

 foreach ( $a[‘posts’] as $post ) {
 if ( ! empty( $text_content ) ) { $text_content.
= “\n”; }

 foreach ( $post as $data_name => $data_value ) {
 $text_content .= sprintf( “%s“,
$data_value ); } }

 if ( ! empty( $a[‘file_name’] ) ) {
 $fp = fopen( $a[‘file_name’], ‘w’ ); fputs(
$fp, $text_content ); fclose( $fp );

 return true;
 }

 return $text_content;
 } ?>

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“JMB Post Feeds” is open source software. The following people have contributed 
to this plugin.

Contributors

 *   [ jmb272 ](https://profiles.wordpress.org/jmb272/)

[Translate “JMB Post Feeds” into your language.](https://translate.wordpress.org/projects/wp-plugins/jmb-post-feeds)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/jmb-post-feeds/), check
out the [SVN repository](https://plugins.svn.wordpress.org/jmb-post-feeds/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/jmb-post-feeds/)
by [RSS](https://plugins.trac.wordpress.org/log/jmb-post-feeds/?limit=100&mode=stop_on_copy&format=rss).

## Meta

 *  Version **1.0**
 *  Last updated **9 years ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 4.0 or higher **
 *  Tested up to **4.8.28**
 *  Language
 * [English (US)](https://wordpress.org/plugins/jmb-post-feeds/)
 * Tags
 * [csv](https://co.wordpress.org/plugins/tags/csv/)[feed](https://co.wordpress.org/plugins/tags/feed/)
   [post feed](https://co.wordpress.org/plugins/tags/post-feed/)[rss](https://co.wordpress.org/plugins/tags/rss/)
   [xml](https://co.wordpress.org/plugins/tags/xml/)
 *  [Advanced View](https://co.wordpress.org/plugins/jmb-post-feeds/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/jmb-post-feeds/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/jmb-post-feeds/reviews/)

## Contributors

 *   [ jmb272 ](https://profiles.wordpress.org/jmb272/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/jmb-post-feeds/)