我试图在我的WordPress网站上运行“搜索和替换”,该主题是自定义构建的,并实现了“高级自定义字段”的“灵活内容字段”,以充当内容“条”的页面构建器。
我有多个页面的内容非常相似(针对按地理位置定位的PPC广告系列)。
在每个页面上,我目前都在WYSIWYG编辑器中嵌入了一个视频,如下所示:
<div class="video">
<video poster="/wp-content/themes/CustomTheme/videos/about_us_video.jpg" controls="controls" width="300" height="150">
<source src="/wp-content/themes/CustomTheme/videos/aboutus.mp4" type="video/mp4" />
<source src="/wp-content/themes/CustomTheme/videos/aboutus.ogv" type="video/ogg" />
<source src="/wp-content/themes/CustomTheme/videos/aboutus.webm" type="video/webm" />
<img alt="ALT TAG HERE" src="/wp-content/themes/CustomTheme/videos/about_us_video.jpg" title="No video playback capabilities, please download the video below" />
</video>
</div>
我想用一个新的iFrame代码替换它,该代码嵌入了youtube的视频,但是,尝试在上述代码中进行查找和替换不会返回任何结果。我假设ACF灵活内容存储数据的方式可能与常规有所不同?
有人能对此有所启发吗?
谢谢!