WP_Widget_Media_Audio::render_control_template_scripts() WordPress Method
The WP_Widget_Media_Audio::render_control_template_scripts() method is used to render the control template scripts for the media audio widget. This method is called in the admin_print_scripts-widgets.php hook.
WP_Widget_Media_Audio::render_control_template_scripts() #
Render form template scripts.
Source
File: wp-includes/widgets/class-wp-widget-media-audio.php
public function render_control_template_scripts() { parent::render_control_template_scripts() ?> <script type="text/html" id="tmpl-wp-media-widget-audio-preview"> <# if ( data.error && 'missing_attachment' === data.error ) { #> <div class="notice notice-error notice-alt notice-missing-attachment"> <p><?php echo $this->l10n['missing_attachment']; ?></p> </div> <# } else if ( data.error ) { #> <div class="notice notice-error notice-alt"> <p><?php _e( 'Unable to preview media due to an unknown error.' ); ?></p> </div> <# } else if ( data.model && data.model.src ) { #> <?php wp_underscore_audio_template(); ?> <# } #> </script> <?php }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.8.0 | Introduced. |