Advanced
Hooks & Filters
Extend Tivlo Press from your theme or plugin.
Actions
add_action('tivlo_press_post_scheduled', function ($post_id, $timestamp) {
// Runs whenever a post is scheduled from the calendar.
}, 10, 2);Filters
add_filter('tivlo_press_default_publish_time', fn () => '09:00');How is this guide?