我有以下代碼,它可以提取blockquote並將我的WordPress帖子內容放入<p>
標籤中。從段落標籤中刪除圖片
<?php
$content = preg_replace('/<blockquote>(.*?)<\/blockquote>/', '', get_the_content());
$content = wpautop($content); // Add paragraph-tags
$content = str_replace('<p></p>', '', $content); // remove empty paragraphs
echo $content;
?>
但是它把圖像中,我不想
1.你想做什麼? 2.你是否嘗試自己寫點東西? 3.輸出是怎樣的? – Dekel
您可能需要爲圖像運行另一個'''preg_replace'''。 [Here](http://wordpress.stackexchange.com/questions/7090/stop-wordpress-wrapping-images-in-a-p-tag)是一個模式的例子。 – CUGreen