Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_types_to_delete_with_user

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
379
380           /**
381            * Filters the list of post types to delete with a user.
382            *
383            * @since 3.4.0
384            *
385            * @param string[] $post_types_to_delete Array of post types to delete.
386            * @param int      $id                   User ID.
387            */
388           $post_types_to_delete = apply_filters( 'post_types_to_delete_with_user', $post_types_to_delete, $id );
389           $post_types_to_delete = implode( "', '", $post_types_to_delete );
390           $post_ids             = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_author = %d AND post_type IN ('$post_types_to_delete')", $id ) );
391           if ( $post_ids ) {
392                foreach ( $post_ids as $post_id ) {
393                     wp_delete_post( $post_id );
394                }
395           }
396
397           // Clean links.