1
我想從WordPress帖子中刪除圖片,以便更好地控制我如何爲網站的首頁佈局設計。在做了一些混亂和失敗之後,我終於找到了一篇很棒的文章,其中有一段很棒的代碼解決了我的問題。從WordPress帖子中刪除圖片
<?php
$content = get_the_content();
$postOutput = preg_replace('/<img[^>]+./','', $post->post_content);
echo $postOutput;
?>
但有些時候我在上面如圖片鏈接:
<a href="#"><img src="PATH_IMAGES"></a>
那麼,怎樣才能刪除它?
不錯,它刪除''和''但給我的href''結束,我需要刪除''任何 –
更新? plase –
它會同時刪除.. 和 –