WP_Widget_Text::_filter_gallery_shortcode_attrs( array $attrs )

Filter gallery shortcode attributes.


Description Description

Prevents all of a site’s attachments from being shown in a gallery displayed on a non-singular template where a $post context is not available.


Parameters Parameters

$attrs

(array) (Required) Attributes.


Top ↑

Return Return

(array) Attributes.


Top ↑

Source Source

File: wp-includes/widgets/class-wp-widget-text.php

	public function _filter_gallery_shortcode_attrs( $attrs ) {
		if ( ! is_singular() && empty( $attrs['id'] ) && empty( $attrs['include'] ) ) {
			$attrs['id'] = -1;
		}
		return $attrs;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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