by Constantin Oesterling
4.3 (12 reviews)
Content Update Scheduler
Schedule content updates for any WordPress page or post type.
Compatible with WP 6.9.4
v4.0.2
Current Version v4.0.2
Updated 3 months ago
Last Update on 28 Dec, 2025
Refreshed 6 hours ago
Last Refreshed on
Rank
#5,304
—
No change
Active Installs
2K+
-6.6%
KW Avg Position
88.5
+0.7 better
Downloads
38.7K
+7 today
Support Resolved
0%
—
No change
Rating
86%
Review 4.3 out of 5
4.3
(12 reviews)
Next Milestone 3K
2K+
3K+
929
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 921 more installs to reach 3K+
Rank Changes
Current
#5,304
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.3
12 reviews
Overall
86%
5
9
(75%)
4
0
(0%)
3
1
(8%)
2
1
(8%)
1
1
(8%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| republish | 8 | — | Tag | 1 day ago |
| publication | 26 | — | Tag | 1 day ago |
| scheduling | 132 | — | Tag | 1 day ago |
| schedule | 188 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 4.0.2
- Last Updated
- Dec 28, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- Constantin Oesterling
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4.3
- Reviews
- 12
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,716
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#263
پارسی دیت – Parsi Date
100K+ installs
#369
LatePoint – Calendar Booking Plugin for Appointments and Events
100K+ installs
#384
Frequently Asked Questions
Common questions about Content Update Scheduler
Each page and post has a 'Scheduled Content Update' link in the overview, which allows you to schedule content updates. Click on it. Then select the date and time in the new 'Scheduled Content Update' meta box on 'Page' level and then click 'Publish' to schedule it.
Yes, it has been tested with Elementor and Oxygen Builder. It may also work with other page builders.
You can use below filter to exclude post types: add_filter('content_update_scheduler_excluded_post_types', function($excluded_post_types) { // Replace EXCLUDE_THIS with the name of the post type you want to exclude $excluded_post_types[] = 'EXCLUDE_THIS'; return array_unique($excluded_post_types); });
The plugin provides two action hooks that allow you to perform custom actions before and after a scheduled update is published: Before Publishing Hook: add_action('ContentUpdateScheduler\\before_publish_post', function($post, $orig) { // Perform actions before the scheduled update is published // $post = the scheduled update post // $orig = the original post being updated }, 10, 2); After Publishing Hook: add_action('ContentUpdateScheduler\\after_publish_post', function($post, $orig) { // Perform actions after the scheduled update has been successfully published // $post = the scheduled update post // $orig = the original post that was updated }, 10, 2); These hooks are useful for triggering custom notifications, cache clearing, analytics tracking, or any other post-publication tasks.