Description
Import posts from an RSS feed.
Installation
- Upload the
rss-importer
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Go to the Tools -> Import screen, Click on RSS
FAQ
- Installation Instructions
-
- Upload the
rss-importer
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Go to the Tools -> Import screen, Click on RSS
- Upload the
Reviews
Need fix for import category
Update line 109 for fixed wrong import categories:
Old code: //$categories[$cat_index] = $wpdb->escape( html_entity_decode( $category ) );
New code: $categories[$cat_index] = str_replace(array(‘<![CDATA[‘, ‘]]>’), “, $wpdb->escape( trim($category) ));
not working
PHP Fatal error: Uncaught Error: Call to undefined function set_magic_quotes_runtime() in /var/www/wordpress/wp-content/plugins/rss-importer/rss-importer.php:72\nStack trace:\n#0 /var/www/wordpress/wp-content/plugins/rss-importer/rss-importer.php(178): RSS_Import->get_posts()\n#1 /var/www/wordpress/wp-content/plugins/rss-importer/rss-importer.php(204): RSS_Import->import()\n#2 /var/www/wordpress/wp-admin/admin.php(308): RSS_Import->dispatch()\n#3 {main}\n thrown in /var/www/wordpress/wp-content/plugins/rss-importer/rss-importer.php on line 72, referer: https://marvin.fablab.fau.de/wp-admin/admin.php?import=rss
Not up to date.
Causes errors with current versions of both PHP and WordPress
Contributors & Developers
“RSS Importer” is open source software. The following people have contributed to this plugin.
Contributors“RSS Importer” has been translated into 39 locales. Thank you to the translators for their contributions.
Translate “RSS Importer” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.2
- Update compat
- Add text domain headers
0.1
- Initial release