高级自定义字段 - 在Woocommerce模板上显示YouTube视频

时间:2015-03-19 01:33:02

标签: php wordpress youtube advanced-custom-fields

我已经设置了一个自定义字段,您可以通过wordpress中的文本小部件添加youtube链接的末尾,然后函数会将其添加到网址中的iframe。

以下是将此功能添加到页面中的功能:

                <?php if (($videoUrl = get_field('video_name', $post->ID)) != '') {
            //Extract the url arguments (everything after the '?'
            if (($query = parse_url($videoUrl, PHP_URL_QUERY)) != '') {
                //Convert the arguments into an array for each access
                parse_str($query, $arguments);
                if (array_key_exists('v', $arguments)) {
                    //Create the embed code using the id from the 'v' argument
                    $videoId = $arguments['v'];
                    ?>
            <div class="videoContainer">
                <iframe width="390" height="219" src="https://www.youtube.com/embed/<?= $videoId ?>?rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
            </div>
            <?php 
        }
    }
} ?>

我已将此内容添加到内容中,但似乎没有显示任何内容。有人可以帮我发现任何错误..

1 个答案:

答案 0 :(得分:2)

使用高级自定义字段

在wordpress模板中显示Youtube视频

1)在acf中创建文本字段。 示例:文本字段名称为video_url

2)请在acf文本字段中输入youtube视频链接。

3)在wordpress模板页面的任何地方显示

<?php // use inside loop
echo $youtubevideo_code = wp_oembed_get( get_field('video_url') );
?>