Hi again,
Now i have half a solution (but still not enough).
In heplers/wp_tools.php line 259 : we have a function that returns an array of native WP statuse + a MailPoet status “Scheduled”. It would have been great if i had a filter there to add my own custom statuses, something like
function get_post_statuses(){
return apply_filter(
‘wysija_posts_statuses’,
array_merge( get_post_statuses(), array(‘future’ => __( ‘Scheduled’, WYSIJA) )
);
}
Is there any other way to do it ?
Regards