简体   繁体   中英

PHP inside Wordpress shortcode

I've done a ton of searching and I'm pulling out what's left of my hair. The PHP code on its own is:

<?php echo wp_get_attachment_url($file->ID) ?>

...the shortcode is: [embed][/embed]

I've tried all sorts of variations of 'do shortcode' but can't get things working. Can you suggest the correct code?

WordPress (3.6 or higher) has an audio shortcode, the following should work:

$mp3 = wp_get_attachment_url( $file->ID );
echo do_shortcode( '[audio src="' . $mp3 . '"]' );

More info: https://codex.wordpress.org/Audio_Shortcode

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM