如何在 WordPress 中使用 ACF 上传视频?
How to upload a video using ACF in WordPress?
我仍处于 WordPress 的学习阶段。我无法在 ACF 中弄清楚我应该选择哪种字段类型来上传视频文件以及我应该编写哪些代码来在前端显示它。请查看以下代码。我正在使用 the_field('') 但它不起作用。谁能帮忙
<video width="954" height="535" controls class="tm-mb-40">
<source src="video/wheat-field.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
我想在ACF中的文件类型下选择文件并上传。
之后在上面的代码中使用 the_field。
<video width="954" height="535" controls class="tm-mb-40">
<?php the_field('video');?>
</video>
您可以使用 ACF 类型 Link in the backend to attach video link like these
<?php
$link_data = get_field('video_link');
if(!empty($link_data))
{
$link = $link_data['url'];
?>
<video width="954" height="535" controls class="tm-mb-40">
<source src="<?php echo $link; ?>" type="video/mp4">
Your browser does not support the video tag.
</video>
<?php } ?>
我仍处于 WordPress 的学习阶段。我无法在 ACF 中弄清楚我应该选择哪种字段类型来上传视频文件以及我应该编写哪些代码来在前端显示它。请查看以下代码。我正在使用 the_field('') 但它不起作用。谁能帮忙
<video width="954" height="535" controls class="tm-mb-40">
<source src="video/wheat-field.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
我想在ACF中的文件类型下选择文件并上传。 之后在上面的代码中使用 the_field。
<video width="954" height="535" controls class="tm-mb-40">
<?php the_field('video');?>
</video>
您可以使用 ACF 类型 Link in the backend to attach video link like these
<?php
$link_data = get_field('video_link');
if(!empty($link_data))
{
$link = $link_data['url'];
?>
<video width="954" height="535" controls class="tm-mb-40">
<source src="<?php echo $link; ?>" type="video/mp4">
Your browser does not support the video tag.
</video>
<?php } ?>