diff --git wp-includes/comment.php wp-includes/comment.php
index 16286cf..ac4ec9c 100644
|
|
|
function do_trackbacks($post_id) {
|
| 1749 | 1749 | } |
| 1750 | 1750 | |
| 1751 | 1751 | if ( empty($post->post_excerpt) ) |
| 1752 | | $excerpt = apply_filters('the_content', $post->post_content); |
| | 1752 | $excerpt = apply_filters('the_content', $post->post_content, $post->ID); |
| 1753 | 1753 | else |
| 1754 | 1754 | $excerpt = apply_filters('the_excerpt', $post->post_excerpt); |
| 1755 | 1755 | $excerpt = str_replace(']]>', ']]>', $excerpt); |
diff --git wp-includes/default-filters.php wp-includes/default-filters.php
index c513e7f..1829321 100644
|
|
|
add_filter( 'the_title', 'convert_chars' );
|
| 136 | 136 | add_filter( 'the_title', 'trim' ); |
| 137 | 137 | add_filter( 'the_title', '_post_formats_title', 10, 2 ); |
| 138 | 138 | |
| 139 | | add_filter( 'the_content', 'post_formats_compat', 7 ); |
| | 139 | add_filter( 'the_content', 'post_formats_compat', 7, 2 ); |
| 140 | 140 | add_filter( 'the_content', 'wptexturize' ); |
| 141 | 141 | add_filter( 'the_content', 'convert_smilies' ); |
| 142 | 142 | add_filter( 'the_content', 'convert_chars' ); |