好的,我已经使用以下代码删除了图像:
$content = strip_tags(get_the_content(), \'<p><a><h2><blockquote><code><ul><li><i><em><strong>\');
$content = preg_replace("/\\[caption.*\\[\\/caption\\]/", \'\', $content);
$content = str_replace("[/caption]", \'\', $content);
echo $content;
现在我想在最后展示这些图片。我正在尝试使用这个:
$images = strip_tags(get_the_content(), \'<img>\');
echo $images;
但它不起作用。有什么想法吗?