wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_mediaelement_fallback › WordPress Function

Since3.6.0
Deprecatedn/a
wp_mediaelement_fallback ( $url )
Parameters:
  • (string) $url The media element URL.
    Required: Yes
Returns:
  • (string) Fallback HTML.
Defined at:
Codex:

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



Source

function wp_mediaelement_fallback( $url ) {
	/**
	 * Filters the Mediaelement fallback output for no-JS.
	 *
	 * @since 3.6.0
	 *
	 * @param string $output Fallback output for no-JS.
	 * @param string $url    Media file URL.
	 */
	return apply_filters( 'wp_mediaelement_fallback', sprintf( '<a href="%1$s">%1$s</a>', esc_url( $url ) ), $url );
}