wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_mediaelement_fallback › WordPress Function
Seit3.6.0
Veraltetn/v
› wp_mediaelement_fallback ( $url )
| Parameter: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Provides a No-JS Flash fallback as a last resort for audio / video.
Quellcode
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 );
}