<?php
ob_start();
the_content('Read the full post',true);
$postOutput = preg_replace('/<img[^>]+./','', ob_get_contents());
ob_end_clean();
echo $postOutput;
?>
Ref. Link: http://wordpress.org/support/topic/exclude-images-from-showing-in-the_content
ob_start();
the_content('Read the full post',true);
$postOutput = preg_replace('/<img[^>]+./','', ob_get_contents());
ob_end_clean();
echo $postOutput;
?>
Ref. Link: http://wordpress.org/support/topic/exclude-images-from-showing-in-the_content
No comments:
Post a Comment