从WordPress帖子中删除图像

时间:2015-05-12 12:05:28

标签: php wordpress

我想从WordPress帖子中删除图片,让我更好地控制如何为网站的首页布局设计。在做了一些搞乱和失败后,我终于找到了一个很棒的帖子,里面有一段很棒的代码可以解决我的问题。

<?php
$content = get_the_content();
$postOutput = preg_replace('/<img[^>]+./','', $post->post_content);
echo $postOutput;
?>

但是有一段时间我在链接上面的图片如下:

<a href="#"><img src="PATH_IMAGES"></a>

那么,如何删除它?

1 个答案:

答案 0 :(得分:2)

通过以下代码更改上述代码,如果您的内容中存在链接,则删除链接。

$content = get_the_content();
$postOutput = preg_replace('/<img[^>]+./','', $post->post_content);
$postContent = preg_replace("/<a[^>]+\>/i", "", $postOutput);
echo $postContent;