Skip to content

WebDevStudios/WDS-RSS-Post-Aggregator

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

WDS RSS Post Aggregator

Contributors: jtsternberg, JayWood, stacyk, blobaugh, lswilson, imBigWill, coreymcollins
Tags: post import, feed import, rss import, rss aggregator
Requires at least: 3.6.0
Tested up to: 4.1
Stable tag: 0.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Allows you to selectively import posts to your WordPress installation from RSS Feeds and save them locally so they're never lost.

Description

WDS RSS Post Aggregator provides site owners the ability to selectively import RSS posts to their blog using WordPress' built in post selection interface. Once a feed is selected and a post is imported, the excerpt, title, and all the usual things you would expect are editable. You can even categorize and tag the posts in their own taxonomies.

With RSS Post Aggregator, the following is pulled in during the import process:

  • Post Title
  • Original Post URL
  • Post Content
  • Post Thumbnail

Installation

Manual Installation

  1. Upload the entire /rss-post-aggregator directory to the /wp-content/plugins/ directory.
  2. Activate RSS Post Aggregator through the 'Plugins' menu in WordPress.

Dev Documentation

To include RSS Posts in a loop, you only need to add the post-type of rss-posts to the query, here's an example:

// Add query to main loop on homepage.
add_action( 'pre_get_posts', 'wds_get_my_posts' );
function wds_get_my_posts( $query ){
	if( $query->is_home() && $query->is_main_query() ){
		$query->set( 'post_type', array( 'post', 'rss-posts' ) );
	}
}

You may also want to access the category information, which is housed in the rss-category taxonomy. 'Rss Feed Links' are housed in the rss-feed-links taxonomy as well.

Frequently Asked Questions

Open A Ticket

  • None Yet

Screenshots

Importing RSS Posts
"Add New RSS Post" dialog

RSS Feed Links
"RSS Feed Links" page, very similar to tags/categories

RSS Feed Categories
"RSS Feed Categories" page

Imported Posts
Imported posts with imported featured image ( It's automatic!!! )

Post Edit Screen
Post Edit Screen - Manually set RSS feed link.

Changelog

0.1.1

  • Removed CMB2 dependancy - Fixes #2
  • Code cleanup and docblocks

0.1.0

  • First release