Plugin info

Total downloads: 11,516
Active installs: 1,000
Total reviews: 10
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 2 language(s)
Contributors: 1
Last updated: 10/15/2018 (2634 days ago)
Added to WordPress: 10/15/2018 (7 years old)
Minimum WordPress version: 4.7
Tested up to WordPress version: 4.9.28
Minimum PHP version: 5.6

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2634 days ago • 10 reviews

24/100

Is Bulk edit publish date abandoned?

Possibly abandoned (last update 2634 days ago).

Compatibility

Requires WordPress: 4.7
Tested up to: 4.9.28
Requires PHP: 5.6

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Auto Numbering Post
Rating 5.0/5 (1 reviews)Active installs 40

Description

Adds a bulk action to all post types to allow setting the publish date to a specific date time.

The bulk action is by default applied to all post types.

The plugin uses input types of date and time to allow users to set the desired publish date / time.

This is a very lightweight plugin as has as little code as possible, and is also designed to be developer friendly
with alter hooks allowing other plugins to make changes to how this plugin operates.

Installation

The easiest way to install this plugin is to go to Add New in the Plugins section of your blog admin and search for
“Bulk edit publish date.” On the far right side of the search results, click “Install.”

If the automatic process above fails, follow these simple steps to do a manual install:

  1. Extract the contents of the zip file into your /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

Can I edit the post types that this bulk action will apply to?

The post types that this should be applied to can be editing by using the bulk_edit_publish_date_post_types filter.

For example you could put this in your code to remove the bulk action from the post type “post”:

add_filter('bulk_edit_publish_date_post_types', 'my_plugin_bulk_edit_publish_date_post_types');
function my_plugin_bulk_edit_publish_date_post_types($post_types) {
    unset($post_types['post']);
    return $post_types;
}

Can I edit the post data used to update the post before the post is saved?

Yes, the filter bulk_edit_publish_date_post_update_data can be used to make any changes to the update data before the
post is saved.

Can I edit the admin notice before it’s displayed?

Yes, the filter bulk_edit_publish_date_admin_notice can be used to make any changes to the admin notice before it’s
output to the screen.

Review feed

Jon Dennis
10/21/2018

Fantastic Plugin!

Took me hours to find this plugin - this is exactly what I needed, and does the job very nicely. I had 300 posts that needed to go live at midnight in two weeks, and it would have taken ages to do it the normal Wordpress way, so this plugin enabled me to do it in 5 minutes (including installing the plugin!).
WebMan Design | Oliver Juhas
7/21/2020

Works like a charm!

Thank you, this plugin works perfectly. Just what I needed.

Screenshots

  1. Shows the set publish date bulk action in the drop down.

    Shows the set publish date bulk action in the drop down.

  2. Shows setting the date using the html 5 date element type before the bulk action  is applied.

    Shows setting the date using the html 5 date element type before the bulk action is applied.

Changelog

1.0

  • First version released.