wp_ajax_custom-background-add
The WordPress Core wp ajax custom background add hook.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'ajax_background_add' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_ajax_custom-background-add', $array );
- The following example is for adding a hook callback.
- // define the wp_ajax_custom-background-add callback
- function action_wp_ajax_custom_background_add( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_ajax_custom-background-add', 'action_wp_ajax_custom_background_add', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_ajax_custom-background-add', 'action_wp_ajax_custom_background_add', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/custom-background.php
- add_action( 'wp_ajax_custom-background-add', array( $this, 'ajax_background_add' ) );