bd_ . $bd_action, $_POST

bd_ . $bd_action, $_POST

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: bulk-delete.6.12

do_action('bd_ . $bd_action, $_POST') is found 2 times:

  • /include/Core/Controller.php line 77
    			 * This hook is for doing the bulk operation. Nonce check has already happened by this point.
    			 *
    			 * @since 5.4
    			 */
    			do_action( 'bd_' . $bd_action, $_POST ); //phpcs:ignore
    		}
    
    		if ( isset( $_GET['bd_action'] ) ) {
    			$bd_action   = sanitize_text_field( wp_unslash($_GET['bd_action'] ?? '') );
    			$nonce_valid = false;
    
    
  • /include/controller/class-bd-controller.php line 75
    			 * This hook is for doing the bulk operation. Nonce check has already happened by this point.
    			 *
    			 * @since 5.4
    			 */
    			do_action( 'bd_' . $bd_action, $_POST ); //phpcs:ignore
    		}
    
    		if ( isset( $_GET['bd_action'] ) ) {
    			$bd_action   = sanitize_text_field( wp_unslash($_GET['bd_action']) );
    			$nonce_valid = false;