Ticket #3670: post-template.php.diff
File post-template.php.diff, 544 bytes (added by , 15 years ago) |
---|
-
wp-includes/post-template.php
164 164 */ 165 165 function the_content($more_link_text = null, $stripteaser = 0) { 166 166 $content = get_the_content($more_link_text, $stripteaser); 167 $content = apply_filters('the_content', $content);168 167 $content = str_replace(']]>', ']]>', $content); 168 $content = apply_filters('the_content', $content); 169 169 echo $content; 170 170 } 171 171