Skip to content
feedzy-rss-feeds

Manually cleaning feeds? Still? Go Pro to filter by keyword, auto-clean old posts, and set fallback images automatically.

See Pro Plans →

Feed Groups in Feedzy

Feedzy comes with a useful option of grouping multiple feed sources of similar topics into a single group that can be further used as a feed source. In this  submenu of the Feedzy RSS Agreggator plugin, you can add groups of the feeds.

Creating Feed GroupsFeed Groups Usage
Feed Groups Limit

⚙️ Creating Feed Groups

1 Navigate to Dashboard > Feedzy > Feed Groups.

2 Click on the Add Group button.

3 Enter a goup title.

4Paste the URLs of the feeds you want to display in this group. You can add multiple sources here, comma separated.

5 Click on Publish and check the library to see the changes.An advantage of this feature is that you can check if the feeds are  valid from the Actions column. Click on the blue button and see the result.

🧰 Feed Groups Usage

After publishing the feed group, you can use that as a feed source in the Feedzy block, WordPress widget, Elementor widget, or shortcode, just like you did before, except that you'll be using the newly created group  slug instead of the feed URL.

Feed Groups SlugFeed Groups in the Import Wizard

Feed Groups in Gutenberg Editor

Feed Groups in WordPress Widgets

Feed Groups in Elementor Widget


🗂 Feed Groups Limit

By default, there will be displayed the latest 100 feed groups.  If you want to raise the limit, use this code snippet and paste it into the plugin file:

function fz_increase_category_limit( $wp_query ) {
	global $pagenow;
	if ( ! is_admin() || 'post-new.php' !== $pagenow ) {
		return;
	}
	$post_type = $wp_query->get( 'post_type' );
	if ( 'feedzy_categories' === $post_type ) {
		$wp_query->set( 'posts_per_page', 999 );
	}
}
add_action( 'pre_get_posts', 'fz_increase_category_limit' );