开发者 | unioney |
---|---|
更新时间 | 2025年9月30日 22:16 |
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 Fetchub.com to sign up. You’ll receive an email with a token; enter this token in the Fetchub settings page of the plugin to activate your trial. You can also find your token on your Fetchub.com Account Dashboard page, under Fetchub Token.
We created this plugin to make it accessible to everyone—especially journalists, editors, freelancers, and beginners. That’s why we only charge $1/month. Yes, you read that right—just $1/month. We believe in keeping things simple because we don’t like plugins that cost more than $1/month. No contracts. No hidden costs. Cancel anytime directly from your Fetchub.com account dashboard, under the "My Subscription" page. We believe this is a symbolic price that can help as many people as possible. If you follow the best practices mentioned earlier in 5, your total monthly cost would be approximately $4/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 importing, make sure that Statuses are enabled and click the "Fetch all feeds" button to schedule all feeds. Caution: This will overwrite your existing settings.
We used it to translate into the X language and fetch news. For the Title we added:
You can easily contact us by visiting 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. Check FAQ #12.
www.
vs non-www.
domains and trims tokens to prevent broken activations.wp_clear_scheduled_hook()
during settings save, which previously stopped feed processing unexpectedly.network_admin_url()
)..aspx
feeds.Published: <feed>
and No new posts: <feed> (interval …)
with compact stats and a readable feed URL.<srcset>
, Open Graph/JSON-LD, article scraping).[Text|URL]
links now auto-converted.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.