W3cubDocs

/WordPress

WP_Widget_Media_Audio::render_media( array $instance )

Render the media on the frontend.

Parameters

$instancearrayrequired
Widget instance props.

Source

public function render_media( $instance ) {
	$instance   = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );
	$attachment = null;

	if ( $this->is_attachment_with_mime_type( $instance['attachment_id'], $this->widget_options['mime_type'] ) ) {
		$attachment = get_post( $instance['attachment_id'] );
	}

	if ( $attachment ) {
		$src = wp_get_attachment_url( $attachment->ID );
	} else {
		$src = $instance['url'];
	}

	echo wp_audio_shortcode(
		array_merge(
			$instance,
			compact( 'src' )
		)
	);
}

Changelog

Version Description
4.8.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget_media_audio/render_media