Ticket #39848: 39848.2.diff
File 39848.2.diff, 529 bytes (added by , 5 years ago) |
---|
-
src/wp-includes/post-template.php
diff --git src/wp-includes/post-template.php src/wp-includes/post-template.php index e4e945dad5..ca2099308d 100644
function the_title( $before = '', $after = '', $echo = true ) { 48 48 49 49 $title = $before . $title . $after; 50 50 51 /** 52 * Filters the post title after 'the_title' filter. 53 * 54 * @param string $title The post title. 55 */ 56 $title = apply_filters( 'the_title_wrap', $title ); 57 51 58 if ( $echo ) { 52 59 echo $title; 53 60 } else {