Monthly Archives: October 2025
Custom Templates Guide
📝 Custom Templates Guide
Master HTML structure for your automated posts
🎯 What Are Templates?
Templates let you control the HTML structure of posts created by the plugin. Instead of just dumping AI-generated content into WordPress, you can wrap it in custom HTML with specific formatting, styling, and layout.
🤔 How Templates Work
The Process:
- Plugin fetches content (from RSS, YouTube, or Podcast)
- AI rewrites it (if enabled)
- Template applies → Wraps content in your custom HTML
- Post is created with your custom formatting
Simple Example:
Without Template:
[Post content goes here as plain text]
With Template:
<article class="my-custom-post">
<div class="content">
[Post content goes here]
</div>
<footer>
<p>Source: <a href="...">Original Article</a></p>
</footer>
</article>
🎨 Template Variables
Templates use variables that get replaced with actual content:
Core Variables:
| Variable | What It Becomes | Example |
|---|---|---|
{{title}} |
Post title | “10 Tips for WordPress” |
{{content}} |
AI-generated content | Full post content |
{{excerpt}} |
Post excerpt | First 55 words |
{{author}} |
Author name | “John Smith” |
{{author_bio}} |
Author biography | “John is a WordPress dev…” |
{{date}} |
Post date | “October 7, 2025” |
{{time}} |
Post time | “3:45 pm” |
{{categories}} |
Category names | “Tech, WordPress” |
{{source_title}} |
Original source title | Original article headline |
{{source_url}} |
Original source URL | https://example.com/… |
{{source_date}} |
Source publish date | When it was published |
{{year}} |
Current year | “2025” |
{{site_name}} |
Your site name | “My Blog” |
📦 Available Presets
The plugin includes 5 ready-made templates:
1. Default
Simple, clean layout with just content and source link.
2. Minimal
Ultra-simple: just content and a small source attribution.
3. Professional Blog
Full article layout with header, author info, and footer.
4. News Article
News-style layout with timestamp and categories.
5. Card Style
Modern card layout with emoji icons.
Preset #2: Minimal
{{content}}
<p><em>Source: <a href="{{source_url}}">{{source_title}}</a></em></p>
Preset #3: Professional Blog
Includes: Post title, Author name and date, Full content, Author bio, Source attribution
<article class="blog-post">
<header class="post-header">
<h1>{{title}}</h1>
<div class="post-meta">
<span class="author">By {{author}}</span>
<span class="date">{{date}}</span>
</div>
</header>
<div class="post-content">
{{content}}
</div>
<footer class="post-footer">
<div class="source-attribution">
<p><strong>Original Source:</strong>
<a href="{{source_url}}">{{source_title}}</a></p>
</div>
<div class="author-bio">
<p><strong>About the Author:</strong> {{author_bio}}</p>
</div>
</footer>
</article>
Preset #4: News Article
Includes: Date and time stamp, Categories, Content, Source with copyright
<div class="news-article">
<div class="article-meta">
<time datetime="{{date}}">{{date}}</time>
<span class="categories">Filed under: {{categories}}</span>
</div>
<div class="article-body">
{{content}}
</div>
<div class="article-footer">
<p><strong>Source:</strong>
<a href="{{source_url}}">{{source_title}}</a></p>
<p>© {{year}} {{site_name}}</p>
</div>
</div>
Preset #5: Card Style
Includes: Card header, Excerpt box, Full content, Meta info with emojis, “View Original” link
<div class="content-card">
<div class="card-header">
<h2>{{title}}</h2>
</div>
<div class="card-body">
<div class="excerpt">
{{excerpt}}
</div>
<div class="content">
{{content}}
</div>
</div>
<div class="card-footer">
<div class="meta">
<span>📅 {{date}}</span>
<span>✍️ {{author}}</span>
</div>
<a href="{{source_url}}">View Original →</a>
</div>
</div>
🎯 How to Use Templates
1
Enable Templates for Campaign
- Create or edit a campaign
- Scroll to “Custom Post Template” section
- Check the box: “Use custom post template for this campaign”
- The template editor will appear
2
Load a Preset (Easiest Way)
- Select a preset from dropdown
- Click “Load” button
- Template code appears in the text area
- Edit it or use as-is
3
Customize (Optional)
Edit the template code to:
- Add your own CSS classes
- Change the HTML structure
- Rearrange elements
- Add/remove variables
- Add custom text
4
Save Campaign
Click “Create Campaign” or “Update Campaign” – your template is saved!
💡 Practical Examples
Example 1: Add a Custom Banner
<div style="background: #f0f0f0; padding: 20px; border-left: 4px solid #0073aa;">
<p><strong>📢 This content was curated by AI Auto Poster</strong></p>
</div>
{{content}}
<p><em>Source: <a href="{{source_url}}">{{source_title}}</a></em></p>
Example 2: Add Call-to-Action
{{content}}
<div style="background: #e7f5ff; padding: 15px; margin-top: 20px;
border-radius: 5px;">
<p><strong>👉 Want more content like this?</strong></p>
<p><a href="/subscribe">Subscribe to our newsletter</a></p>
</div>
<p><small>Source: <a href="{{source_url}}">{{source_title}}</a></small></p>
Example 3: Two-Column Layout
<div style="display: flex; gap: 20px;">
<div style="flex: 2;">
{{content}}
</div>
<div style="flex: 1; background: #f9f9f9; padding: 15px;">
<h3>About This Post</h3>
<p><strong>Published:</strong> {{date}}</p>
<p><strong>Author:</strong> {{author}}</p>
<p><strong>Categories:</strong> {{categories}}</p>
<hr>
<p><a href="{{source_url}}">Read Original →</a></p>
</div>
</div>
Example 4: Podcast Episode Template
<div class="podcast-post">
<div class="episode-header">
<h1>🎙️ {{title}}</h1>
<p class="episode-meta">Published on {{date}}</p>
</div>
<div class="episode-player">
<!-- Audio player automatically added by plugin if enabled -->
</div>
<div class="episode-description">
<h2>Episode Description</h2>
{{content}}
</div>
<div class="episode-footer">
<p><strong>Listen on:</strong>
<a href="{{source_url}}">{{source_title}}</a></p>
</div>
</div>
🔧 Templates vs Settings
Q: “Is this the same as in Settings?”
No, they’re different!
| Feature | Campaign Templates | Settings |
|---|---|---|
| Scope | Per-campaign | Site-wide |
| Purpose | Custom HTML structure for posts | General plugin settings |
| When Used | When creating posts from THIS campaign | All the time |
| Can Override | Yes, overrides defaults | Sets the defaults |
Example Use Case:
- Campaign 1 (Tech News): Uses “News Article” template
- Campaign 2 (Podcast): Uses custom podcast template
- Campaign 3 (Blog Posts): Uses “Professional Blog” template
🐛 Fixed: Load Button Issue
The Problem:
The “Load” button didn’t work because of a nonce mismatch.
What Was Wrong:
- JavaScript sent nonce created with name
'aap_admin_nonce' - AJAX handler checked for nonce with name
'aap_admin' - Names didn’t match → Security check failed → Button did nothing
The Fix (v9.0.1-FINAL2):
Changed nonce creation to use 'aap_admin' so it matches what the AJAX handler expects.
Now the Load button works! ✅
💡 Tips & Best Practices
1. Start with a Preset
Don’t write from scratch – load a preset and customize it.
2. Keep It Simple
Complex templates can break. Start simple, add complexity gradually.
3. Use CSS Classes
Add classes to elements so you can style them with your theme’s CSS.
4. Test Variables First
Make sure a variable works before building complex layouts around it.
5. Validate HTML
Use an HTML validator to check your template syntax.
6. Backup Templates
Copy your template code to a text file before making major changes.
🆘 Troubleshooting
“Load button doesn’t work”
Solution: Use v9.0.1-FINAL2 (has nonce fix)
“Variables don’t replace”
Check:
- Variable name is correct:
{{content}}not{content} - Variable is spelled correctly
- Variable exists (check list above)
“Template breaks my site”
Check:
- HTML is valid (no unclosed tags)
- No PHP code (templates are HTML only)
- No JavaScript errors
“Template looks wrong”
Check:
- Your theme’s CSS might be conflicting
- Try adding more specific CSS classes
- Check mobile view too
📚 Summary
What Templates Do:
- Control HTML structure of automated posts
- Let you customize layout per campaign
- Use variables that get replaced with actual content
How to Use:
- Enable templates for campaign
- Load a preset
- Customize if needed
- Save campaign
5 Presets Available:
- Default
- Minimal
- Professional Blog
- News Article
- Card Style
Key Variables:
{{title}}– Post title{{content}}– AI-generated content{{source_url}}– Original source{{author}}– Author name{{date}}– Publish date
Fixed in v9.0.1-FINAL2:
- ✅ Load button now works
- ✅ Nonce mismatch resolved
Ready to use templates! 🎨
Start creating beautiful, structured posts today
AI Auto Poster Technical Documentation
AI Auto Poster for WordPress
Technical Documentation v9.0
Last Updated: October 8, 2025
Quick Navigation:
Overview • Features • Requirements • Installation • Getting Started • Content Sources • Templates • Scheduling • Costs • Monitoring • FAQ • Support
🤔 What is AI Auto Poster?
AI Auto Poster is a WordPress plugin that automatically discovers content from your favorite sources (RSS feeds, YouTube channels, podcasts), rewrites it using OpenAI’s GPT models, and publishes it to your WordPress site—all on autopilot.
Think of it as your personal content team that never sleeps:
- 📡 Discovers fresh content from sources you choose
- 🤖 Rewrites it into unique, high-quality articles using AI
- 📝 Publishes to your WordPress site automatically
- 🔄 Repeats on your schedule (hourly, daily, weekly, etc.)
Perfect For:
- Bloggers who want to maintain posting consistency
- Content Marketers who need to scale content production
- News Sites that aggregate and curate industry news
- Affiliate Marketers who review products from multiple sources
- Niche Publishers who want to dominate their topic
✨ Key Features
🎯 Content Automation
Multiple Content Sources
- Import from any RSS/Atom feed
- Fetch YouTube videos with transcripts
- Import podcast episodes with show notes
- Mix and match sources in campaigns
AI-Powered Rewriting
- OpenAI GPT-4o, GPT-4o-mini, GPT-3.5 Turbo support
- Transform content into your unique voice
- Maintain SEO value while avoiding duplicate content
- Customize tone, style, and length
Smart Publishing
- Auto-publish or save as drafts for review
- Schedule posts for specific times and days
- Set maximum posts per day limits
- Add categories and tags automatically
🎨 Customization
Template System
- 5 pre-built professional templates
- Create unlimited custom templates
- Use template variables for dynamic content
- HTML and CSS customization
Content Filtering
- Filter by keywords (include/exclude)
- Set minimum and maximum content length
- Only import recent content (last X days)
- Quality score thresholds
📊 Monitoring & Cost Control
API Usage Tracking v9.0
- Real-time cost monitoring
- Track token usage
- Per-campaign statistics
- Budget alerts and limits
⚡ Performance
Async AI Processing v9.0
- 3-5x faster content processing
- Non-blocking campaign execution
- Automatic retry on failures
- Priority-based processing
🔄 How It Works
Simple 4-Step Process:
Real-World Example – Tech News Blog:
Result: Fresh content every 2 hours, automatically! 🎉
📋 Requirements
| Component | Requirement | Notes |
|---|---|---|
| WordPress | 6.0+ | Required |
| PHP | 7.4+ (8.0+ recommended) | Required |
| MySQL | 5.7+ | Required |
| PHP Memory | 128MB+ | 256MB recommended |
| OpenAI API Key | Active account | Required for AI features |
| YouTube API Key | Optional | Only for YouTube sources |
📥 Installation
Quick Install (3 Steps):
- Purchase & Download – Visit wpsuccesstools.com/ai-auto-poster and download the plugin
- Upload & Activate – WordPress Admin → Plugins → Add New → Upload
- Add OpenAI Key – AI Auto Poster → Settings → AI Configuration
- Add YouTube API Key (optional) – AI Auto Poster → Settings → YouTube API Configuration
🚀 Getting Started in 5 Minutes
Step 1: Purchase & Download
- Purchase plugin at wpsuccesstools.com/ai-auto-poster
- Download the plugin zip file
Step 2: Install Plugin
- Go to WordPress Admin → Plugins → Add New → Upload
- Upload
ai-auto-poster.zipand activate
Step 3: Get an OpenAI API Key
- Visit platform.openai.com/api-keys
- Sign up or log in
- Click “Create new secret key”
- Copy the key
Step 4: Configure Plugin
- Go to AI Auto Poster → Settings → AI Configuration
- Paste your OpenAI API Key
- Select GPT-3.5 Turbo (best value)
- Click “Test Connection”
- Click “Save”
Step 5: Create First Campaign
Go to: AI Auto Poster → Campaigns → Add New
Fill in:
- Campaign Title: My First Campaign
- Source Type: RSS Feed
- Feed URL: https://techcrunch.com/feed/
- Enable AI Rewrite: ✓ Yes
- Template: Professional Blog
- Post Status: Draft
- Schedule: Every 2 hours
- Status: Active
Click Create Campaign
✅ Congratulations! Your campaign is running automatically.
📡 Content Sources Explained
| Source Type | What It Does | Best For |
|---|---|---|
| RSS Feeds | Imports blog posts and articles from any RSS/Atom feed. Works with TechCrunch, Wired, or any WordPress site. | Blog aggregation, news curation, industry updates |
| YouTube | Fetches videos from channels/playlists, extracts transcripts, embeds videos. Requires YouTube Data API key (free). | Video review sites, tutorial blogs, video galleries |
| Podcasts | Imports episode show notes, extracts descriptions, embeds audio player. Uses podcast RSS feed. | Podcast blogs, episode archives, show notes database |
🎨 Templates & Customization
Built-in Templates
- Default – Clean blog post
- Professional Blog – Polished article
- News Article – News-style format
- Tutorial – Step-by-step guide
- Review – Product review layout
Template Variables
Custom Template Example
<h1>{{title}}</h1>
<div class="meta">
By {{author}} on {{date}}
</div>
<div class="content">
{{content}}
</div>
<p class="source">
Source: <a href="{{source_url}}">{{source_title}}</a>
</p>
📅 Scheduling Options
Pre-set Intervals
- Every 15 minutes
- Every 30 minutes
- Every 1 hour
- Every 6 hours
- Every 12 hours
- Every 24 hours
- Custom (any duration)
Best Practices
| Content Type | Recommended Interval |
|---|---|
| News/Updates | Every 1-2 hours |
| Blog Posts | Every 6-12 hours |
| Reviews | Daily |
| Podcasts | When episodes release |
💰 Understanding Costs
OpenAI Pricing (October 2024)
| Model | Cost per 1M Tokens | Best For |
|---|---|---|
| GPT-3.5 Turbo | $0.50-$1.50 | High volume |
| GPT-4o-mini | $0.15-$0.60 | Budget-friendly |
| GPT-4o | $2.50-$10.00 | Highest quality |
Monthly Cost Examples
| Volume | Model | Monthly Cost |
|---|---|---|
| 10 posts/day | GPT-3.5 Turbo | $5-10 |
| 50 posts/day | GPT-4o-mini | $15-30 |
| 100 posts/day | Mixed | $50-100 |
📊 Monitoring Dashboard
What You Can Track
- API Usage: Real-time costs, token usage, per-campaign breakdown, historical trends
- Campaign Performance: Posts created, success/failure rates, processing times, queue length
- Notifications: Email alerts, Slack messages, webhook events, daily summaries
Dashboard Widgets:
TODAY’S USAGE
API Calls: 45
Tokens: 67,500
Cost: $0.13
THIS MONTH
Total: $12.45
Budget: $50.00
Remaining: 75%
CAMPAIGNS
Active: 5
Running: 2
Completed: 23
❓ Frequently Asked Questions
Do I need coding skills?
No! Everything is done through simple forms.
Will content be unique?
Yes! AI rewrites everything into original content.
Can I review before publishing?
Yes! Set post status to “Draft” to review first.
How much does OpenAI cost?
Typically $5-50/month depending on volume.
Which AI model should I use?
Start with GPT-3.5 Turbo (best value).
Will this slow my site?
No! Processing happens in background.
Will Google penalize AI content?
No, if it’s unique, valuable, and well-written.
🆘 Getting Help
Documentation
- Quick Start: This README
- User Guide: USER-GUIDE.md in plugin folder
- Quick Answers: QUICK-ANSWERS.md
Support Channels
- Website: wpsuccesstools.com/ai-auto-poster
- Email: support@wpsuccesstools.com
- Installation Test:
yoursite.com/wp-content/plugins/ai-auto-poster/test-installation.php
Troubleshooting
Plugin not working?
- Check WordPress/PHP versions
- Verify API key
- Test API connection
- Check debug.log
Campaigns not running?
- Check campaign is “Active”
- Verify WordPress Cron
- Check schedule settings
- Review error logs
📄 License & Purchase
Commercial License – One-Time Purchase
Copyright (C) 2025 WP Success Tools
License Terms:
- One-time purchase fee
- Lifetime access to the plugin
- Free updates for 1 year (or as specified in your purchase)
- Use on unlimited sites under your account
- No recurring subscription fees
- Premium support included
Purchase: Visit wpsuccesstools.com/ai-auto-poster to buy.
Note: While the plugin itself is a one-time purchase, you’ll need an OpenAI API key (separate service) for AI features, which has its own pay-as-you-go pricing.
🙏 Credits
Developed by: WP Success Tools
Website: wpsuccesstools.com
Support: support@wpsuccesstools.com
Powered by:
- OpenAI GPT Models
- WordPress
- Your creativity!
🚀 Ready to Start?
Your Content Automation Journey Starts Now!
- Purchase and download the plugin (2 minutes)
- Install and activate (2 minutes)
- Configure API key (2 minutes)
- Create first campaign (3 minutes)
- Relax while content posts automatically
Transform your WordPress site into an automated content machine!
AI Auto Poster v9.0 | Production Ready ✅
Last Updated: October 8, 2025
AI Auto Poster Presentation
📖 Looking for technical details? View Full Technical Documentation →
🤖 AI Auto Poster
Automatically create and publish blog posts from RSS feeds, YouTube, and podcasts
🎯 What Does This Plugin Do?
AI Auto Poster helps you automatically create blog content without writing a single word. It:
- Monitors RSS feeds, YouTube channels, or podcasts
- Fetches new content when it’s published
- Uses AI to rewrite it into unique blog posts
- Automatically publishes to your WordPress site
The best part? It runs completely automatically. Set it up once, and it keeps creating content for days, weeks, or months without you touching anything.
👥 Who Should Use This?
✅ Perfect For:
- News aggregator sites
- Niche blog curators
- Content automation fans
- Busy site owners
- RSS feed enthusiasts
⚠️ Not Ideal For:
- Primary YouTube users*
- Sites needing 100% original content
- Manual quality control lovers
- Those without OpenAI account
*YouTube Note: Due to YouTube’s privacy settings and API limitations, we cannot guarantee the YouTube feature will work consistently for all channels. RSS feeds work much more reliably. Use YouTube at your own risk!
⚙️ How Does It Work?
1
You Create a “Campaign”
A campaign is like a recipe. You tell the plugin:
- Where to get content (RSS feed URL)
- How often to check for new posts (every hour, every 6 hours, etc.)
- Whether to use AI rewriting (yes/no)
- What template to use for posts
2
Plugin Monitors Your Source
Every 15 minutes, the plugin checks if your campaigns are due to run. If a campaign is due, it fetches new content from the RSS feed, YouTube channel, or podcast you specified.
3
AI Rewrites the Content
If you enabled AI rewriting, the plugin sends the content to OpenAI (ChatGPT). The AI transforms it into a unique blog post in your preferred style – making it fresh and original.
4
Post Gets Published
The plugin applies your chosen template (custom HTML layout), then automatically publishes the post to your WordPress site. Done! No manual work required.
Set it → Forget it → Content appears automatically! 🎉
✨ Key Features
📡 Multiple Sources
Import from RSS feeds, YouTube channels, or podcast feeds. Mix and match!
🤖 AI Powered
Uses OpenAI (ChatGPT) to rewrite content into unique, natural-sounding posts.
⏰ Automatic Scheduling
Set custom intervals: every 15 minutes, hourly, daily, or any custom schedule.
🎨 Custom Templates
Control post layout with HTML templates. 5 presets included!
📊 Campaign Management
Run multiple campaigns at once. Each can have different sources and settings.
🔄 Hands-Free Operation
Once set up, runs automatically. No login needed for weeks or months!
🚀 Getting Started (Quick Guide)
Before You Start: You’ll need an OpenAI API key to use the AI rewriting feature. Get one at platform.openai.com (requires credit card, costs about $0.002 per article).
Step 1: Install & Configure
- Install and activate the plugin
- Go to AI Auto Poster → Settings
- Enter your OpenAI API key
- Click “Test Connection” to verify it works
- Save settings
Step 2: Create Your First Campaign
- Go to AI Auto Poster → Campaigns
- Click “Add New Campaign”
- Give it a name (e.g., “Tech News”)
- Choose RSS Feed as source type
- Enter an RSS feed URL (e.g., TechCrunch, your favorite blog)
- Set how often to check (e.g., “Every 6 hours”)
- Enable “AI Rewrite” (recommended)
- Choose a template (or leave default)
- Set status to “Active”
- Click “Create Campaign”
Step 3: Wait for Magic to Happen
That’s it! The plugin will now:
- Check your RSS feed automatically
- Fetch new articles when they appear
- Rewrite them with AI
- Publish to your WordPress site
Pro Tip: Start with just one campaign using a reliable RSS feed. Once you see it working, add more campaigns!
📋 What You Need
| Requirement | Details | Cost |
|---|---|---|
| WordPress | Version 6.0 or higher | Free |
| PHP | Version 7.4 or higher | Free (included with hosting) |
| OpenAI API Key | For AI rewriting (optional but recommended) | ~$0.002 per article |
| RSS Feed URL | Any public RSS feed | Free |
| Cron (optional) | For reliable automation | Free (built-in WP cron works too) |
❓ Common Questions
Do I need to stay logged in?
No! Once campaigns are set up, the plugin runs automatically. You can close your browser and not log in for days, weeks, or even months. Posts will keep being created.
Is the AI rewriting required?
No, but it’s highly recommended. Without AI rewriting, posts will be copies of the original content (which may have copyright issues). AI rewriting makes content unique and SEO-friendly.
How much does the AI cost?
OpenAI charges about $0.002 per article (less than a penny). If you create 100 articles, it costs about $0.20. Very affordable!
Can I review posts before they publish?
Yes! In campaign settings, you can set posts to save as “Draft” instead of “Publish.” Then you can review and manually publish each one.
What about YouTube?
Use with caution! YouTube’s privacy settings and API changes make it unreliable. Some channels work, others don’t. We recommend RSS feeds for consistent results. Use YouTube as an extra bonus, not your main source.
How many campaigns can I run?
Unlimited! Run as many campaigns as you want. However, the plugin processes 5 campaigns per cron run (every 15 minutes) to prevent server overload.
Will it work on shared hosting?
Yes! The plugin is designed to be lightweight. It works fine on most shared hosting plans. For best results, set up system cron instead of relying on WordPress cron.
💼 Real-World Use Cases
📰 News Aggregator Site
Create 5 campaigns, each monitoring a different tech news site’s RSS feed. Set them to check every hour. Your site automatically publishes 20-30 tech news articles per day, all rewritten to be unique.
Result: Fresh tech news site with minimal effort.
🍳 Recipe Blog
Monitor 3 popular recipe blog RSS feeds. Set to check every 6 hours. Use custom template to format recipes nicely. AI rewrites ingredients and instructions to be unique.
Result: Daily recipe posts without cooking a single meal.
💰 Affiliate Marketing Site
Monitor product review blogs in your niche. AI rewrites reviews and adds your affiliate links via template. Set to post as drafts so you can add links before publishing.
Result: Steady stream of product reviews for your affiliate offers.
🎓 Educational Resource Site
Curate educational content from university blogs and research sites. Rewrite academic papers into easy-to-read blog posts. Perfect for study resource sites.
Result: Educational content library that grows automatically.
⚠️ Important Things to Know
YouTube Reliability
YouTube channels often have privacy settings that block automated access. We cannot guarantee the YouTube feature will work for all channels. Many users report it stops working after YouTube makes changes. Use RSS feeds for reliable automation. Consider YouTube a bonus feature, not a primary one.
Content Quality
AI rewriting is good but not perfect. Always review a few posts when you first set up a campaign to ensure quality meets your standards. You can set posts to “Draft” mode for manual review.
Copyright & Ethics
Always respect copyright laws. AI rewriting makes content unique, but you should still link back to original sources (the templates do this automatically). Don’t claim content as 100% original if it’s curated from other sites.
API Costs
Monitor your OpenAI usage. While costs are low (pennies per post), they can add up if you create hundreds of posts per day. Set up billing alerts in your OpenAI account.
Server Resources
The plugin is lightweight, but running 20+ campaigns on a tiny shared hosting plan might slow things down. Start small (3-5 campaigns) and scale up as you monitor performance.
🎯 Tips for Success
✅ Start Small
Begin with 1-2 campaigns. Once you see them working, add more gradually.
✅ Use RSS Feeds
RSS is the most reliable source. Find RSS feeds of blogs in your niche.
✅ Test First
Set initial posts to “Draft” mode. Review quality before switching to auto-publish.
✅ Use Templates
Pre-built templates make posts look professional. Load one and customize it!
✅ Monitor Logs
Check cron logs occasionally to ensure campaigns are running smoothly.
✅ Set Realistic Intervals
Most blogs post once per day. No need to check every 15 minutes!
📚 Quick Summary
What It Does:
Automatically fetches content from RSS feeds (or YouTube/podcasts), rewrites it with AI to be unique, and publishes it to your WordPress site – all without you touching anything.
Best For:
News aggregator sites, niche content curators, busy bloggers, affiliate marketers, and anyone who wants automated content creation from RSS feeds.
What You Need:
- WordPress 6.0+
- OpenAI API key (for AI rewriting)
- RSS feed URLs
- 10 minutes to set up
Important Note:
YouTube is unreliable due to privacy settings. Use RSS feeds for best results. YouTube should be considered a bonus feature that may or may not work consistently.