wp_create_file_in_uploads
This action is documented in wp-admin/custom-header.php.
Description
Parameters (2)
- 0. $file (unknown)
- The file.
- 1. $id (unknown)
- The id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_create_file_in_uploads', $file, $id );
- The following example is for adding a hook callback.
- // define the wp_create_file_in_uploads callback
- function action_wp_create_file_in_uploads( $file, $id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_create_file_in_uploads', 'action_wp_create_file_in_uploads', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_create_file_in_uploads', 'action_wp_create_file_in_uploads', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/custom-background.php
- do_action( 'wp_create_file_in_uploads', $file, $id ); // For replication
- /wp-admin/custom-header.php
- do_action( 'wp_create_file_in_uploads', $file, $attachment_id ); // For replication