How to schedule multiple posts while adding new
Here’s a sketch of another idea, where we create scheduling shortcuts to make it easier for the users: We can use the post_submitbox_misc_actions to add extra fields to the submit box: /** * Scheduling-Shortcuts fields. * * @see http://wordpress.stackexchange.com/a/168748/26350 */ add_action( ‘post_submitbox_misc_actions’, function() { if( ! current_user_can( ‘publish_posts’ ) ) return; ?> <div style=”padding: 2px … Read more