cbnet Ping Optimizer

cbnet Ping Optimizer

from 0$

cbnet Ping Optimizer is a Package Installer from the Open Source WP Plugins range Doesn't do anything. Isn't needed. Core WordPress handling of Pings is oh-so-fine!

For more information about a tailored Package Installer like cbnet Ping Optimizer please contact us directly.

Hello there! You may be wondering why you’re reading this, instead of looking at Plugin settings. Well, the reason that you’re not looking at Plugin settings is because there aren’t any Plugin settings anymore. In fact, this Plugin doesn’t have any functionality anymore.

Why? Because this Plugin’s functionality is no longer needed. In fact, this Plugin’s functionality may never have been needed in the first place. But regardless of that, it certainly isn’t needed now.

How Pings Work in WordPress

Let me explain why, starting with a walkthrough of how pings work in WordPress, courtesy of @Otto42:

  • When a post gets created, updated, inserted, modified, etc., eventually, it always goes through wp_insert_post().
  • wp_insert_post() calls wp_transition_post_status().
  • wp_transition_post_status() does various actions, but importantly it does this:
  • do_action(“{$new_status}_{$post->post_type}”, $post->ID, $post);
  • So the action of new-status and new-post-type is called. In this case, we’re interested in the publish status on the post post-type, so publish_post is the action hook.
  • In wp-includes/default-filters.php, we have this:
    ** add_action( ‘publish_post’, ‘_publish_post_hook’, 5, 1 );
    ** So that causes publish_post to call _publish_post_hook().
  • _publish_post_hook(), among other things, adds the ‘_pingme’ post meta to the post, and schedules the do_pings action for a one-time cron call, which will happen on the next page load (because it’s hooked to time() for the schedule).
  • Again in wp-includes/default-filters.php, we have this:
    ** add_action( ‘do_pings’, ‘do_all_pings’ );
  • The do_all_pings() function does all the pings for all the posts that are marked as needing them done at the moment.

Regarding draft, scheduled (future), and edited posts:

  • Draft posts have a post_status of draft, meaning that wp_transition_post_status() calls do_action() on draft_post rather than on publish_post. Scheduled posts have a post_status of future, meaning that wp_transition_post_status() calls do_action() on future_post rather than on publish_post. Thus, neither draft nor scheduled posts get pings sent for them until they actually transistion to publish, since that is when the publish_post action will get fired.
  • Editing posts: editing an existing post will send pings for the post, but do_all_pings() is smart. It calls the pingback() function to send pingbacks to blogs, and that in turn calls the get_pung() function to get the URLs in the post that have already been successfully pinged once before. This is very old code – so old, in fact, that the list of pinged blogs is actually a primary column (pinged) in the wp_posts table.

Why the Ping Optimizer Plugin Isn’t Needed

So consider again the Plugin description:

Do you know your WordPress blog pings unnecessarily every time you edit a post? Think how many times you click on “Save and Continue Editing” or “Save” button. Your blog will ping unnecessarily that many times you click on those buttons.

Save your blog from getting tagged as ping spammer by installing this plugin.

After you install cbnet Ping Optimizer:

  • When you create a new post, your blog will ping and notify all the ping services that it has been updated. This encourages search engines and different blog directories/services to index your updated blog properly.
  • When you edit an existing post, it won’t send any unnecessary ping to ping services and saves your blog from getting banned by such services.
  • When you post a future post by editing the time stamp, it will ping only when your post appears in future. It won’t unnecessarily ping many times when you schedule posts as WordPress does by default.

It should be obvious that most of that just isn’t true anymore.

Think how many times you click on “Save and Continue Editing” or “Save” button. Your blog will ping unnecessarily that many times you click on those buttons.

As you see above, this isn’t true. Saving a draft post does not fire the publish_post action; therefore, no pings are triggered.

When you create a new post, your blog will ping and notify all the ping services that it has been updated.

WordPress core functionality does this already.

When you edit an existing post, it won’t send any unnecessary ping to ping services and saves your blog from getting banned by such services.

As you see above, WordPress intelligently fires pings when a post is edited, by keeping track of previous successful pings and not re-pinging them.

When you post a future post by editing the time stamp, it will ping only when your post appears in future. It won’t unnecessarily ping many times when you schedule posts as WordPress does by default.

As you see above, scheduling a post fires the future_post action, and not the publish_post action. Thus, until a scheduled post actually transitions to publish, thereby firing the publish_post action, no pings are triggered.

So, none of this Plugin’s functionality is needed. You can safely deactivate and uninstall it, with the understanding of why the core WordPress handling of pings works just fine.

Download & install the zip archive

The plugin package installer can be downloaded from the WP2E project tab called “code”.

1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.

2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.

3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.

Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.

Cbnet Ping Optimizer

typePlugin
version3.0
descriptionDoesn't do anything. Isn't needed. Core WordPress handling of Pings is oh-so-fine!