_filter_do_shortcode_context() – Filter the `wp_get_attachment_image_context` hook during shortcode rendering.

You appear to be a bot. Output may be restricted

Description

Filter the wp_get_attachment_image_context hook 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.

Usage

$string = _filter_do_shortcode_context();

Parameters

Returns

string The filtered context value for wp_get_attachment_images when doing shortcodes.

Source

File name: wordpress/wp-includes/shortcodes.php


Lines:

1 to 4 of 4
function _filter_do_shortcode_context() {
  return 'do_shortcode';
}
 

 View on GitHub View on Trac