sfw/sync/before_trash_post
Description
Register Rest Route for Item Synchronization
Since: 1.0.0
Usage
<?php
function my_sfw_sync_before_trash_post ( $post_id ){
// do your stuff here
}
add_action( 'sfw/sync/before_trash_post', 'my_sfw_sync_before_trash_post', 10, 1 );
?>