ACF for audio url in wordpress audio shortcode

I havent tested yet but I think can work, what I would do is create a function to create a new shortcode from those to doing this.

function new_shortcode() {
$urlmusic = get_field('sound_file_1');

echo do_shortcode("https://wordpress.stackexchange.com/questions/319702/$urlmusic");
}

add_shortcode( 'audioACF', 'new_shortcode' );

Use [audioACF]

Leave a Comment