Plugin info

Total downloads: 1,031
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 7/19/2017 (3088 days ago)
Added to WordPress: 7/19/2017 (8 years old)
Minimum WordPress version: 4.0
Tested up to WordPress version: 4.8.27
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3088 days ago

20/100

Is JMB Post Feeds abandoned?

Possibly abandoned (last update 3088 days ago).

Compatibility

Requires WordPress: 4.0
Tested up to: 4.8.27
Requires PHP: f

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WP Custom Post RSS Feed
Rating 3.5/5 (4 reviews)Active installs 100
SoGrid Lite
Rating 5.0/5 (2 reviews)Active installs 10
Posts RSS Feeds
Rating 0.0/5 (0 reviews)Active installs 0

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.

Frequently Asked Questions

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;
}
?>

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available