WP_Widget_Media_Gallery::render_media( array $instance )
Render the media on the frontend.
Parameters
- $instance
-
(array) (Required) Widget instance props.
Source
File: wp-includes/widgets/class-wp-widget-media-gallery.php
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 );
} Changelog
| Version | Description |
|---|---|
| 4.9.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget_media_gallery/render_media