{"id":24731441,"url":"https://github.com/hawaii-interactive-ch/multi-rss-feed-importer","last_synced_at":"2026-05-04T14:36:46.128Z","repository":{"id":273581461,"uuid":"920145909","full_name":"Hawaii-Interactive-CH/multi-rss-feed-importer","owner":"Hawaii-Interactive-CH","description":"Import and manage posts from multiple RSS feed URLs.","archived":false,"fork":false,"pushed_at":"2025-02-20T16:16:00.000Z","size":126,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-20T17:28:04.494Z","etag":null,"topics":["rss","wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hawaii-Interactive-CH.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-21T16:35:51.000Z","updated_at":"2025-02-20T16:16:03.000Z","dependencies_parsed_at":"2025-01-21T19:26:33.692Z","dependency_job_id":"7329ebdc-5221-409b-8c21-02e3d2caf0a5","html_url":"https://github.com/Hawaii-Interactive-CH/multi-rss-feed-importer","commit_stats":null,"previous_names":["hawaii-interactive-ch/multi-rss-feed-importer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hawaii-Interactive-CH%2Fmulti-rss-feed-importer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hawaii-Interactive-CH%2Fmulti-rss-feed-importer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hawaii-Interactive-CH%2Fmulti-rss-feed-importer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hawaii-Interactive-CH%2Fmulti-rss-feed-importer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hawaii-Interactive-CH","download_url":"https://codeload.github.com/Hawaii-Interactive-CH/multi-rss-feed-importer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244981293,"owners_count":20542288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rss","wordpress","wordpress-plugin"],"created_at":"2025-01-27T16:49:31.177Z","updated_at":"2026-05-04T14:36:46.085Z","avatar_url":"https://github.com/Hawaii-Interactive-CH.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Multi RSS Feed Importer for WordPress\n\nWordPress plugin to import and manage RSS feeds into custom post types.\n\n## Features\n\n- Import RSS feed items into custom post types\n- Update existing posts if they already exist\n- Manage multiple RSS feeds via a simple interface\n- Global limit on the number of posts per feed\n- Automated imports via WP Cron\n- Customizable settings for post types and cron intervals\n- User-friendly admin UI with real-time progress tracking\n\n## Requirements\n\n- WordPress 5.0 or higher\n- PHP 7.4 or higher\n\n## Installation\n\n1. Download the plugin zip file\n2. Upload the zip file to your WordPress site via Plugins \u003e Add New\n3. Activate the plugin\n4. Configure settings under Settings \u003e RSS Feed Importer\n\n## Usage\n\n### Manual Import\n\nUse the RSS Feed Importer settings to add your feed URLs and configure options like post type, global feed limits, and cron intervals.\n\n### Example Code Usage\n\nIf you need to extend functionality programmatically:\n\n```php\nuse Multi_RSS_Feed_Importer\\FeedLoader;\n\n// Create a new loader instance\n$loader = new FeedLoader('https://example.com/feed.xml');\n\n// Import RSS feed items into a custom post type\n$loader-\u003eimport_posts('custom_post_type');\n```\n\n### Automated Import\n\nConfigure your RSS sources and cron settings in the WordPress admin under Settings \u003e RSS Feed Importer.\n\n## Development\n\n### Plugin Structure\n\n```bash\nmulti-rss-feed-importer/\n├── admin/\n│   ├── templates/\n│   │   ├── rss-fetch.php\n│   │   └── rss-settings.php\n├── assets/\n│   ├── css/\n│   │   └── admin.css\n│   └── js/\n│       └── admin.js\n├── includes/\n│   ├── class-admin-page.php\n│   ├── class-feed-loader.php\n│   ├── class-logger.php\n│   └── class-loader.php\n├── languages/\n├── logs/\n├── tests/\n├── uninstall.php\n├── multi-rss-feed-importer.php\n└── README.md\n```\n\n### Building from Source\n\n1. Clone the repository.\n2. Create a new branch for your feature.\n3. Make your changes.\n4. Test thoroughly.\n5. Create a pull request.\n\n## Contributing\n\n1. Fork the repository.\n2. Create a feature branch.\n3. Commit your changes.\n4. Push to the branch.\n5. Create a new Pull Request.\n\n## Settings Overview\n\n1. **Custom Post Type**: Define which post type the RSS feed items should be imported into.\n2. **RSS Feed URLs**: Enter one or more RSS feed URLs. Separate multiple URLs with a new line.\n3. **Global Feed Limit**: Optionally set a limit for the total number of posts per feed.\n4. **Cron Interval**: Configure how frequently RSS feeds should be processed.\n5. **Enable Cron**: Enable or disable automated imports.\n\n## Plugin Demo\n\n### Admin Interface\n\n- **Feed Management**: Add, edit, and delete RSS feed URLs.\n- **Settings Panel**: Configure post type, global feed limits, and cron options.\n- **Real-Time Import Logs**: View real-time import logs in the admin panel.\n\n## License\n\nGPLv2 or later\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhawaii-interactive-ch%2Fmulti-rss-feed-importer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhawaii-interactive-ch%2Fmulti-rss-feed-importer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhawaii-interactive-ch%2Fmulti-rss-feed-importer/lists"}