admin管理员组文章数量:1122832
i have this code for our custom amp page in wordpress this code remove our all images in content area but i want these images show as a amp images
$content = get_the_content();
$content = preg_replace("/<img[^>]+\>/i", " ", $content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
$content = str_replace("/","",$content);
$content = preg_replace('/<iframe\s+.*?\s+src=(".*?").*?<\/iframe>/', '<amp-youtube
data-videoid=$1
layout="responsive"
width="480" height="270"></amp-youtube>', $content);
echo $content;
help me out how to customize preg_replace function to replace tags to <amp images
本文标签: imagesConvert all img tags into ampimg in wordpress content area
版权声明:本文标题:images - Convert all img tags into amp-img in wordpress content area 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736306202a1932870.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论