add-ons are available to increase the functionality of the WP RSS Aggregator plugin.', WPRSS_TEXT_DOMAIN ), 'http://www.wprssaggregator.com/extensions') ?>

Simple Feeds Bundle or' . ' Advanced Feeds Bundle!', WPRSS_TEXT_DOMAIN ), 'https://www.wprssaggregator.com/extension/simple-feeds-bundle/', 'https://www.wprssaggregator.com/extension/advanced-feeds-bundle/'); ?>

$addon ): ?>

array( 'title' => 'Feed to Post', 'description' => __("An advanced importer that lets you import RSS feed items as WordPress posts or any other custom post type. You can use it to populate a website in minutes (auto-blog). This is the most popular and feature-filled extension.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-feed-to-post/wp-rss-feed-to-post.php', 'url' => 'http://www.wprssaggregator.com/extension/feed-to-post/' ), 'ftr' => array( 'title' => 'Full Text RSS Feeds', 'description' => __("Adds connectivity to our premium full text service, which allows you to import the full post content for an unlimited number of feed items per feed source, even when the feed itself doesn't provide it", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-full-text-feeds/wp-rss-full-text.php', 'url' => 'http://www.wprssaggregator.com/extension/full-text-rss-feeds/' ), 'wai' => array( 'title' => 'WordAi', 'description' => __("An extension for Feed to Post that allows you to integrate the WordAi article spinner so that the imported content is both completely unique and completely readable.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-wordai/wp-rss-wordai.php', 'url' => 'http://www.wprssaggregator.com/extension/wordai/' ), 'spc' => array( 'title' => 'SpinnerChief', 'description' => __("An extension for Feed to Post that allows you to integrate the SpinnerChief article spinner so that the imported content is both completely unique and completely readable.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-spinnerchief/wp-rss-spinnerchief.php', 'url' => 'http://www.wprssaggregator.com/extension/spinnerchief/' ), 'et' => array( 'title' => 'Excerpts & Thumbnails', 'description' => __("Displays an excerpt and thumbnail image (taken from within the RSS feed) together with the title, date and source of each feed item. It uses the shortcode to display the feed items.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-excerpts-thumbnails/wp-rss-excerpts-thumbnails.php', 'url' => 'http://www.wprssaggregator.com/extension/excerpts-thumbnails/' ), 'c' => array( 'title' => 'Categories', 'description' => __("Categorises your feed sources and allows you to display feed items from a particular category within your site using the shortcode parameters.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-categories/wp-rss-categories.php', 'url' => 'http://www.wprssaggregator.com/extension/categories/' ), 'kf' => array( 'title' => 'Keyword Filtering', 'description' => __("Filters the feed items to be imported based on your own keywords, key phrases, or tags; you only get the items you're interested in. It is compatible with all other add-ons.", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-keyword-filtering/wp-rss-keyword-filtering.php', 'url' => 'http://www.wprssaggregator.com/extension/keyword-filtering/' ), 'widget' => array( 'title' => 'Widget', 'description' => __("Adds a widget to your website that displays all the imported feed items. It can also display excerpts and thumbnail images when used in conjunction with the Excerpts & Thumbnails add-on", WPRSS_TEXT_DOMAIN), 'thumbnail' => WPRSS_IMG . 'add-ons/wprss.jpg', 'basename' => 'wp-rss-widget/wp-rss-widget.php', 'url' => 'http://www.wprssaggregator.com/extension/widget/' ), )); } /** * Check if plugin file exists but plugin is inactive * @param $path Path to plugin file * @since 4.7.3 * @return bool TRUE if plugin file found but plugin inactive. False otherwise */ function wprss_is_plugin_inactive( $path ){ if( ! isset( $path ) ){ return FALSE; } if( file_exists( WP_PLUGIN_DIR . '/' . $path ) && is_plugin_inactive( $path ) ){ return TRUE; // plugin found but inactive } return FALSE; }