WP_Widget_Media_Gallery::render_media( array $instance )

Render the media on the frontend.


Parameters

$instance array Required
Widget instance props.

Top ↑

Source

File: wp-includes/widgets/class-wp-widget-media-gallery.php. View all references

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

	$shortcode_atts = array_merge(
		$instance,
		array(
			'link' => $instance['link_type'],
		)
	);

	// @codeCoverageIgnoreStart
	if ( $instance['orderby_random'] ) {
		$shortcode_atts['orderby'] = 'rand';
	}

	// @codeCoverageIgnoreEnd
	echo gallery_shortcode( $shortcode_atts );
}


Top ↑

Changelog

Changelog
Version Description
4.9.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.