Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Remove images from the the_content()

<?php 
$content = get_the_content();
$content = preg_replace("/<img[^>]+>/i", "(image) ", $content);          
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>
Source by www.forumming.com #
 
PREVIOUS NEXT
Tagged: #Remove #images
ADD COMMENT
Topic
Name
9+5 =