_filter_do_shortcode_context()WP 6.3.0

Filter the wp_get_attachment_image_context during shortcode rendering.

When wp_get_attachment_image() is called during shortcode rendering, we need to make clear that the context is a shortcode and not part of the theme's template rendering logic.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

Строку. The filtered context value for wp_get_attachment_images when doing shortcodes.

Использование

_filter_do_shortcode_context();

Список изменений

С версии 6.3.0 Введена.

Код _filter_do_shortcode_context() WP 6.7.1

function _filter_do_shortcode_context() {
	return 'do_shortcode';
}