在同一页面上的不同位置分隔文本和图像

时间:2018-02-27 08:59:48

标签: php wordpress

使用以下代码删除图像(并仅粘贴文本)

<?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 /位置

0 个答案:

没有答案