wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_mediaelement_fallback › WordPress Function

Od3.6.0
Przestarzałyn/a
wp_mediaelement_fallback ( $url )
Parametry:
  • (string) $url The media element URL.
    Wymagane: Tak
Powrót:
  • (string) Fallback HTML.
Zdefiniowane na:
Codex:

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



Źródło

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 );
}