The deleted tag has no wiki summary.
1
vote
1answer
551 views
Wordpress Delete hook with wp_delete_post function?
I have this action/hook:
add_action( 'before_delete_post', 'my_delete_function' );
function my_delete_function($post_id) {
global $wpdb;
$achievement = get_the_category($post_id);
$h = ...