wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_make_content_images_responsive › WordPress Function

Seit4.4.0
Veraltet5.5.0
wp_make_content_images_responsive ( $content )
Parameter:
  • (string) $content The raw post content to be filtered.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) Converted content with 'srcset' and 'sizes' attributes added to images.
Definiert in:
Codex:

Filters 'img' elements in post content to add 'srcset' and 'sizes' attributes.



Quellcode

function wp_make_content_images_responsive( $content ) {
	_deprecated_function( __FUNCTION__, '5.5.0', 'wp_filter_content_tags()' );

	// This will also add the `loading` attribute to `img` tags, if enabled.
	return wp_filter_content_tags( $content );
}