开发者 | unioney |
---|---|
更新时间 | 2025年9月10日 02:15 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
fetchub
folder to /wp-content/plugins/
.Each feed can have a unique interval (in minutes). Fetchub dynamically registers those intervals (e.g., every_7_minutes
) and schedules fetchub_feed_cron
per feed. Saving settings regenerates the schedules. On plugin deactivation, related scheduled events are cleared to prevent duplication.
Fetchub integrates with OpenAI, Gemini, Claude, and Grok. Enable your preferred provider(s) and input API keys in the settings.
The ai_rank_importance
function uses AI to score feed items from 0 to 10 based on interest and importance, allowing prioritization of high-value content when "Smart Logic" is enabled.
You can still fetch and publish feeds without AI features (translation, ranking), though full functionality requires at least one active provider.
While using we were experienced with Gemini Flash 2.0 Lite monthly approx. $14 based on the used 49 feed rows without Couple Title! When we activate Couple Title $3/mo.
Visit https://fetchub.com to sign up. You’ll receive an email and token; enter these in the Fetchub settings page to activate your trial.
We are the team which is making this plugin to have reach all people and the people who are journalists, editors, freelancers and who are starters. That is why we only ask $1 from all in month. Yes, correct: $1/month. No contract. No hidden costs. Cancel anytime directly from your account page. We think that this is very symbolic and can be helpful to all. If you will use it as we mentioned above at 5., approx. $3/month.
Check your feed URLs and server resources. Enable WP_DEBUG
in wp-config.php
to log errors for troubleshooting.
Use the "Export Settings" button to download a JSON file, then upload it via "Import Settings" on the new site to merge configurations. After import, Fetchub automatically re-schedules all feeds.
We used it to translate into the X language and fetch news. For the Title we added:
You can easily contact us by visiting https://fetchub.com/contact and sending us all the details, screenshots, or videos you have on hand so we can try to fix any issue.
We run happily on any modern host, but if you want “zero-tuning” speed and reliability we recommend ihost WordPress Cloud Hosting. Why ihost works so well with Fetchub
ini
asp_tags = 0
auto_append_file =
auto_prepend_file =
display_errors = 0
error_reporting = 22527
file_uploads = 1
max_execution_time = 300
max_file_uploads = 50
max_input_time = 300
max_input_vars = 10000
memory_limit = 1024M
output_buffering = 0
post_max_size = 256M
short_open_tag = 1
upload_max_filesize = 256M
zlib.output_compression = 0
php
add_filter( 'fetchub_guid_cache_size', function () { return 2000; } );
add_filter( 'fetchub_summary_keep', function () { return 800; } );
It filters to Fetchub-only cron events and lets you Run now, Delete, or Reschedule per feed. Actions are nonce-protected; rescheduling sanitises input before use.
It unschedules all Fetchub jobs without changing row enabled/disabled states, sets a global pause flag, and triggers a short-lived kill-switch for jobs already running.
These models are no longer available from supported providers and are removed from the default picker:
For maximum performance and reliability, we suggest ihost WordPress Cloud Hosting. It offers built-in caching, CDN, and optimized PHP.
every_{N}_minutes
schedules based on the intervals used by your feeds; also ensures a weekly schedule exists.time
strings and new GMT timestamps.fetchub_cleanup_summaries
) that trims _fetchub_summary
post-meta to the 500 most-recent rows, preventing long-term table growth.prepare()
and inline PHPCS whitelisting; PHPCS reports come back clean.