esc_attr( __( 'unknown media format', 'boozurk' ) ),
'player_path' => get_template_directory_uri().'/resources/audio-player/player.swf',
);
wp_localize_script( 'boozurk-audioplayer-script', 'boozurkAudioPlayer_l10n', $data );
}
function audio_player( $text = '' ) {
global $post;
if ( post_password_required() ) return;
$pattern = "/([^<]+)<\/a>/i";
if ( $text != '')
preg_match_all( $pattern, $text, $result );
elseif ( is_attachment() )
preg_match_all( $pattern, wp_get_attachment_link( $post->ID ), $result );
else
preg_match_all( $pattern, $post->post_content, $result );
if ( $result[0] )
self::scripts(); // Add js
$instance = 0;
foreach ($result[0] as $key => $value) {
$instance++;
?>