cbnet Ping Optimizer
Doesn't do anything. Isn't needed. Core WordPress handling of Pings is oh-so-fine!
The facts
- Active installs
- 1k+
- Price
- Free
- Last updated
- 28 Nov 2017
- Added
- Jan 2010
- Requires WP
- 2.9
- Tested up to
- WP 3.5.2
- Downloads
- 338,837
Our analysis
AI-assistedcbnet Ping Optimizer is a WordPress plugin designed to manage ping notifications when posts are created or edited. It aims to prevent unnecessary pings that could lead to a blog being flagged as spam by ping services. However, the author states that the plugin's functionality is no longer needed due to changes in how WordPress handles pings.
The plugin does not have any settings or active functionality at this time. It was intended for users who wanted to control ping notifications, but it is now considered redundant.
Best for: This plugin may suit users looking for a historical perspective on ping management in WordPress.
What it does well
- ✓Free to use from the WordPress.org directory
- ✓Active installations indicate some user interest
- ✓Author provides a detailed explanation of ping functionality
Where it falls short
- •Plugin functionality is no longer needed
- •No settings or active features available
- •Last updated in November 2017
Verdict
While cbnet Ping Optimizer was once useful, it is now redundant and lacks functionality, making it unsuitable for current WordPress users.
From the developer
Chip Bennett's own description of cbnet Ping Optimizer, lightly tidied.
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.