Tagged Questions
1
vote
1answer
122 views
How to delete all post and attachments of a user when I delete it?
When I delete a user, WordPress can just delete the post or page of this user,
not his custom post and his attachments.
An idea for a special hook?
add_action( 'delete_user', 'my_delete_user');
...
0
votes
1answer
166 views
Redirect back to origin page after using get_delete_post_link()
I need to implement frontend and backend redirection after delete specific post using get_delete_post_link(). Which hook i can use? Any advice would be appreciated.
Something similar to :
<?php ...
1
vote
1answer
521 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 = ...