Support

Account

Home Forums General Issues ACF mp3 in wordpress audio player Reply To: ACF mp3 in wordpress audio player

  • Hi @cbmusic

    Hmm… Instead of using the_field(), change it to get field. Change your code to the following:

    <?php 
    $attr = array(
    	'src'      => get_field('track_one'),
    	'loop'     => '',
    	'autoplay' => '',
    	'preload' => 'none'
    	);
    echo wp_audio_shortcode( $attr );
    ?>

    Check out the doucmentation for get_field() method: http://www.advancedcustomfields.com/resources/get_field