print_media_templates
Fires when the custom Backbone media templates are printed.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'print_media_templates' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'print_media_templates', $array );
- The following example is for adding a hook callback.
- // define the print_media_templates callback
- function action_print_media_templates( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'print_media_templates', 'action_print_media_templates', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'print_media_templates', 'action_print_media_templates', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /functions.gallery.php
- add_action( 'print_media_templates', array( $this, 'print_media_templates' ) );