使用以下代码删除图像(并仅粘贴文本)
<?php
$content = get_the_content();
$content = preg_replace("/<img[^>]+\>/i", " ", $content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>
尝试引入图像(在同一页面的新区域中)我试图使用
preg_match('#(<img.*?>)#', $content, $results);
无济于事。而且我也想知道是否有比运行两次函数更好的方法,或者如果我可以将文本和图像分开并将它们分成两个不同的div /位置