Viewing 1 replies (of 1 total)
  • Thread Starter midwestkel

    (@midwestkel)

    Ok, for some reason the function isn’t being executed when post are trashed or deleted permanently. This is what I did to get around that:

    Find

    add_action('delete_post', 'live_blogging_delete_to_meteor');
    add_action('trash_post', 'live_blogging_delete_to_meteor');

    Replace with

    add_action('before_delete_post', 'live_blogging_delete_to_meteor');
    // add_action('trash_post', 'live_blogging_delete_to_meteor');

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Live Blogging] Delay in Deleted Posts’ is closed to new replies.