wp_mediaelement_fallback( string $url ): string

Provides a No-JS Flash fallback as a last resort for audio / video.

Parameters

$urlstringrequired
The media element URL.

Return

string Fallback HTML.

Source

 * Provides a No-JS Flash fallback as a last resort for audio / video.
 *
 * @since 3.6.0
 *
 * @param string $url The media element URL.
 * @return string Fallback HTML.
 */
function wp_mediaelement_fallback( $url ) {
	/**
	 * Filters the MediaElement fallback output for no-JS.
	 *

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

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