Rating: 5 stars
Auto-Schedule Posts is very simple and useful plugin. I have share your plugin in my blogpost.
Rating: 3 stars
Hi it is nice plugin and thanks for done work. This Latest 3.6 version have some bugs.
1. When adding custom menus items from admin dashboard it takes added menu items under schedule and as a result menu items don’t show up in a custom menu until your plugin publishes it according schedule.
I corrected that issue myself by removing post actions (auto_schedule) when menu is updated. below is snipped of code that I used
add_action('wp_update_nav_menu', 'remove_schedule');
//add_action('auto-schedule_to_publish','auto_schedule',1);
function remove_schedule() {
remove_action('pending_to_publish','auto_schedule',1);
remove_action('draft_to_publish','auto_schedule',1);
remove_action('private_to_publish','auto_schedule',1);
remove_action('future_to_publish','future_schedule',1);
remove_action('new_to_publish','auto_schedule',1);
}
2. When pressing publish button just after add new button without waiting an Ajax auto draft of WordPress it doesn’t take post under schedule it seems action hooks doesn’t work properly.
this one I couldn’t correct.
]]>