Ticket #16456: 16456.patch
| File 16456.patch, 678 bytes (added by , 15 years ago) |
|---|
-
wp-includes/post-template.php
163 163 * @param string $stripteaser Optional. Teaser content before the more text. 164 164 */ 165 165 function the_content($more_link_text = null, $stripteaser = 0) { 166 global $post; 166 167 $content = get_the_content($more_link_text, $stripteaser); 167 $content = apply_filters('the_content', $content); 168 if ( ! post_password_required($post) ) 169 $content = apply_filters('the_content', $content); 168 170 $content = str_replace(']]>', ']]>', $content); 169 171 echo $content; 170 172 }