从帖子中删除块引用和文本

时间:2015-06-03 22:51:03

标签: javascript php wordpress

此代码从我的Wordpress帖子中删除图像,并将图像放在其位置

HTML - 代码段

<?php
  preg_match_all('/(<img [^>]*>)/', get_the_content(), $images);
  for( $i=0; isset($images[1]) && $i < count($images[1]); $i++ ) {
  echo $images[1][$i];
}
?>

此代码从帖子中删除文本并仅发布文本。我希望这段代码能够取出&#39;块引用&#39;文本和常规文本分开,所以我可以将块引用放在页面的不同部分而不是常规文本。

HTML - 代码段

<?php
$content = preg_replace('/(<img [^>]*>)/', '', get_the_content());
$content = apply_filters('the_content', $content);
echo $content;
?>

我试过包括

if(preg_match('~<blockquote>([\s\S]+?)</blockquote>~', $block, $matches))

但似乎无法让它发挥作用。我想从每个帖子中分离图像,阻止引号和文字,这样我就能把它放在页面的不同位置

0 个答案:

没有答案