WP_Widget_Text::_filter_gallery_shortcode_attrs()
Filters gallery shortcode attributes.
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.
Метод класса: WP_Widget_Text{}
Хуков нет.
Возвращает
Массив
. Attributes.
Использование
$WP_Widget_Text = new WP_Widget_Text(); $WP_Widget_Text->_filter_gallery_shortcode_attrs( $attrs );
- $attrs(массив) (обязательный)
- Attributes.
Список изменений
С версии 4.9.0 | Введена. |
Код WP_Widget_Text::_filter_gallery_shortcode_attrs() WP Widget Text:: filter gallery shortcode attrs WP 6.6.2
public function _filter_gallery_shortcode_attrs( $attrs ) { if ( ! is_singular() && empty( $attrs['id'] ) && empty( $attrs['include'] ) ) { $attrs['id'] = -1; } return $attrs; }