Plugin Directory

Changeset 2968842


Ignore:
Timestamp:
09/19/2023 05:04:19 PM (3 years ago)
Author:
tommcfarlin
Message:

2.0.0

  • Added: Autoload dependencies
  • Added: CHANGELOG.md
  • Added: DocBlocks
  • Added Review CTA
  • Updated: Composer files to work with Composer 2.0+
  • Updated: .gitignore to allow autoloading
  • Updated: "Tested up to..." constraints
  • Updated: readme.txt
Location:
missed-scheduled-posts-publisher/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • missed-scheduled-posts-publisher/trunk/plugin.php

    r2764714 r2968842  
    11<?php
     2
    23/**
    34 * Plugin Name:       Missed Scheduled Posts Publisher by WPBeginner
    45 * Description:       Catches scheduled posts that have been missed and publishes them.
    5  * Version:           1.0.1
     6 * Version:           2.0.0
    67 * Requires at least: 5.0
    7  * Tested up to:      6.0
     8 * Tested up to:      6.3.1
    89 * Requires PHP:      5.6
    910 * Author:            WPBeginner
     
    1213 * Text Domain:       missed-scheduled-posts-publisher
    1314 */
     15
    1416namespace WPB\MissedScheduledPostsPublisher;
    1517
     18require_once __DIR__ . '/inc/Review.php';
     19add_action('plugins_loaded', function () {
     20    (new Review())->load_hooks();
     21});
     22
    1623require_once __DIR__ . '/inc/namespace.php';
    17 
    1824bootstrap();
  • missed-scheduled-posts-publisher/trunk/readme.txt

    r2764714 r2968842  
    11=== Missed Scheduled Posts Publisher by WPBeginner ===
    22
    3 Stable tag:        1.0.1
     3Stable tag:        2.0.0
    44Requires at least: 5.0
    5 Tested up to:      6.0
     5Tested up to:      6.3.1
    66Requires PHP:      5.6
    77License:           GPLv2
    88Tags:              Scheduled posts, Missed schedule, Cron
    9 Contributors:      WPbeginner, smub, jaredatch, peterwilsoncc
     9Contributors:      WPbeginner, smub, jaredatch, peterwilsoncc, tommcfarlin
    1010
    11 Are your scheduled posts not publishing? This plugin fixes the missed schedule error and triggers your scheduled posts to publish without impacting performance.
     11Are 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.
    1212
    1313== Description ==
    1414
    15 = WordPress Missed Scheduled Posts Publisher by WPBeginner =
     15= WordPress Missed Scheduled Post Publisher by WPBeginner =
    1616
    17 Are you seeing a "missed schedule" error on your scheduled posts?
     17Do you encounter the "missed scheduled post" error with your scheduled content?
    1818
    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.
     19Our 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.
    2020
    21 = What Causes the Missed Schedule Error? =
     21= What Causes the Missed Scheduled Post Error? =
    2222
    23 Having trouble with WordPress scheduled posts not publishing?
     23Not seeing WordPress scheduled posts show up on time?
    2424
    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.
     25WordPress 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.
    2626
    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.
     27In 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."
    2828
    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.
     29These 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.
    3030
    31 = How to Fix the Missed Schedule Error in WordPress =
     31= How Do I Fix the Missed Posts Schedule Error in WordPress =
    3232
    33 Every fifteen minutes this post scheduler plugin checks for posts that have the missed schedule error, and will automatically publish them for you.
     33Scheduled 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.
    3434
    35 Multiple techniques for checking your site's missed posts are used to make sure a scheduled post is not missed.
     35Comprehensive Checks: We employ a range of techniques to ensure that no scheduled post slips through the cracks, guaranteeing a seamless posting experience for you.
    3636
    3737= Credits =
     
    8383== Changelog ==
    8484
    85 = 1.1.0 =
     85= 2.0.0 =
    8686
    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`
    8895
    89 == 1.0.1 ==
     96= 1.0.1 =
    9097
    9198* Improvement: Add a new filter `wpb_missed_scheduled_posts_publisher_frequency` to allows developers to change the frequency of the plugin checks.
     
    93100* Docs: Add new documentation for the plugin release process.
    94101* 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.