test: post format-audio
/**
* Change attribute for WP audio shortcode and embed .
*
* Default preload attribute is 'none' which shows time as 'O:OO'.
* Setting attribute to 'metadata' displays time upon page load.
*/
function soundsshares_audio_preload( $html, $atts, $audio, $post_id, $library ) {
$html = str_replace( 'preload="none"', 'preload="metadata"', $html );
return $html;
}
add_filter( 'wp_audio_shortcode', 'soundsshares_audio_preload', 10, 5 );
Leave a Reply