jruzafa
5/14/2013 - 12:22 PM

The contente of post in wordpress without image

The contente of post in wordpress without image

function the_content_without_image(){
  $content = get_the_content('Read the rest of this entry »');
	$content = preg_replace('/<img[^>]+./', "", $content);
	return $content;
}