Changeset 2968842
- Timestamp:
- 09/19/2023 05:04:19 PM (3 years ago)
- Location:
- missed-scheduled-posts-publisher/trunk
- Files:
-
- 2 edited
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
missed-scheduled-posts-publisher/trunk/plugin.php
r2764714 r2968842 1 1 <?php 2 2 3 /** 3 4 * Plugin Name: Missed Scheduled Posts Publisher by WPBeginner 4 5 * Description: Catches scheduled posts that have been missed and publishes them. 5 * Version: 1.0.16 * Version: 2.0.0 6 7 * Requires at least: 5.0 7 * Tested up to: 6. 08 * Tested up to: 6.3.1 8 9 * Requires PHP: 5.6 9 10 * Author: WPBeginner … … 12 13 * Text Domain: missed-scheduled-posts-publisher 13 14 */ 15 14 16 namespace WPB\MissedScheduledPostsPublisher; 15 17 18 require_once __DIR__ . '/inc/Review.php'; 19 add_action('plugins_loaded', function () { 20 (new Review())->load_hooks(); 21 }); 22 16 23 require_once __DIR__ . '/inc/namespace.php'; 17 18 24 bootstrap(); -
missed-scheduled-posts-publisher/trunk/readme.txt
r2764714 r2968842 1 1 === Missed Scheduled Posts Publisher by WPBeginner === 2 2 3 Stable tag: 1.0.13 Stable tag: 2.0.0 4 4 Requires at least: 5.0 5 Tested up to: 6. 05 Tested up to: 6.3.1 6 6 Requires PHP: 5.6 7 7 License: GPLv2 8 8 Tags: Scheduled posts, Missed schedule, Cron 9 Contributors: WPbeginner, smub, jaredatch, peterwilsoncc 9 Contributors: WPbeginner, smub, jaredatch, peterwilsoncc, tommcfarlin 10 10 11 Are your scheduled posts not publishing? This plugin fixes the missed schedule error and triggers your scheduled posts to publish without impactingperformance.11 Are your scheduled posts missing their publication times? Missed Scheduled Posts Publisher effectively resolves the 'missed scheduled post' error, ensuring that your content is reliably published on time, all while maintaining top-notch website performance. 12 12 13 13 == Description == 14 14 15 = WordPress Missed Scheduled Post sPublisher by WPBeginner =15 = WordPress Missed Scheduled Post Publisher by WPBeginner = 16 16 17 Are you seeing a "missed schedule" error on your scheduled posts?17 Do you encounter the "missed scheduled post" error with your scheduled content? 18 18 19 This plugin does one thing and does it well: it fixes the missed schedule error and triggers your scheduled posts to publish on time. We've developed this post scheduler plugin with performance in mind, so it won't affect the speed or performance of your website.19 Our plugin specializes in resolving the "missed scheduled post" issue with precision. It ensures that your scheduled posts consistently meet their publication deadlines. This post scheduler plugin has been meticulously crafted for optimal performance, guaranteeing zero impact on your website's speed and responsiveness. 20 20 21 = What Causes the Missed Schedule Error? =21 = What Causes the Missed Scheduled Post Error? = 22 22 23 Having trouble with WordPress scheduled posts not publishing?23 Not seeing WordPress scheduled posts show up on time? 24 24 25 That's because scheduled posts are triggered to publish by something called "WordPress cron jobs". Cron is a technical term for commands that run on a scheduled time, like your scheduled posts in WordPress.25 WordPress relies on something called "WordPress cron jobs" to make these posts go live as scheduled. Think of "cron" as a fancy way of saying "commands that follow a schedule," just like your WordPress scheduled posts. 26 26 27 Technically, a real cron job will run at the server level. But because WordPress doesn't have access to that level, it runs a simulated cron. 27 In the technical world, a real "cron job" operates at the server level. But since WordPress can't access that level directly, it does the next best thing by running a "simulated cron." 28 28 29 These simulated cron jobs, like scheduled posts, are supposed to be triggered whenever a person or bot visits your site. But because it's not a real cron job, sometimes it causes a missed schedule error.29 These simulated cron jobs, including the one for your scheduled posts, are supposed to kick in whenever someone (or even a bot) visits your site. But because it's not the real deal, there are times when it slips up and leads to a "missed schedule" hiccup. 30 30 31 = How to Fix the MissedSchedule Error in WordPress =31 = How Do I Fix the Missed Posts Schedule Error in WordPress = 32 32 33 Every fifteen minutes this post scheduler plugin checks for posts that have the missed schedule error, and will automatically publish themfor you.33 Scheduled Post Check: Our post scheduler plugin diligently examines your posts every fifteen minutes to detect any missed schedule errors. If it finds one, it takes the initiative to automatically publish the missed post for you. 34 34 35 Multiple techniques for checking your site's missed posts are used to make sure a scheduled post is not missed.35 Comprehensive Checks: We employ a range of techniques to ensure that no scheduled post slips through the cracks, guaranteeing a seamless posting experience for you. 36 36 37 37 = Credits = … … 83 83 == Changelog == 84 84 85 = 1.1.0 =85 = 2.0.0 = 86 86 87 * Initial plugin release. 87 * Added: Autoload dependencies 88 * Added: `CHANGELOG.md` 89 * Added: DocBlocks 90 * Added Review CTA 91 * Updated: Composer files to work with Composer 2.0+ 92 * Updated: `.gitignore` to allow autoloading 93 * Updated: "Tested up to..." constraints 94 * Updated: `readme.txt` 88 95 89 = = 1.0.1 ==96 = 1.0.1 = 90 97 91 98 * Improvement: Add a new filter `wpb_missed_scheduled_posts_publisher_frequency` to allows developers to change the frequency of the plugin checks. … … 93 100 * Docs: Add new documentation for the plugin release process. 94 101 * Miscs: Update the plugin package name and description in composer.json. 102 103 104 = 1.0.0 = 105 106 * Initial plugin release.
Note: See TracChangeset
for help on using the changeset viewer.