我正在使用ACF custom fields 和video.js 插件和我想在url中为youtube视频添加自定义字段值do_shortcode()
到目前为止,这是我想到的,但似乎不起作用:
<?php
$thevideo = the_field(\'video\');
echo do_shortcode(\'[videojs class="youtubevideo" youtube="http://www.youtube.com/watch?v=\' . $thevideo . \'"]\');
?>