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