This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
post_types_to_delete_with_user filter
Filters the list of post types to delete with a user.
apply_filters( 'post_types_to_delete_with_user', string[] $post_types_to_delete, int $id )
Description
This is filter hook , its filter the list of post types to delete with a user.
By using this hook we can delete the post and custom posts whenver a user is deleted.
Its consists of two parameters, one $post_types_to_delete ,second is $UserId.
Parameters
- $post_types_to_delete : (string[]) Array of post types to delete.
- $id : (int) User ID.
Live Example
To run the hook, copy the example below.
$post_types_to_delete = apply_filters( 'post_types_to_delete_with_user', $post_types_to_delete, $id ); if ( !empty( $post_types_to_delete ) ) { // everything has led up to this point... }
The following example is for adding a hook callback.
// define the post_types_to_delete_with_user callback function filter_post_types_to_delete_with_user( $post_types_to_delete, $id ) { // make filter magic happen here... return $post_types_to_delete; }; // add the filter add_filter( 'post_types_to_delete_with_user', 'filter_post_types_to_delete_with_user', 10, 2 );
To remove a hook callback, use the example below.
// remove the filter remove_filter( 'post_types_to_delete_with_user', 'filter_post_types_to_delete_with_user', 10, 2 );
Explore the latest in WordPress
Trying to stay on top of it all? Get the best tools, resources and inspiration sent to your inbox every Wednesday.