Ticket #39848: 39848.patch
File 39848.patch, 813 bytes (added by , 7 years ago) |
---|
-
src/wp-includes/post-template.php
47 47 48 48 $title = $before . $title . $after; 49 49 50 /** 51 * Filters the post title after 'the_title' filter. 52 * 53 * @param string $title The post title. 54 */ 55 $title = apply_filters( 'the_title_wrap', $title ); 56 50 57 if ( $echo ) 51 58 echo $title; 52 59 else … … 1117 1124 * @param string $output HTML output for drop down list of pages. 1118 1125 * @param array $r The parsed arguments array. 1119 1126 * @param array $pages List of WP_Post objects returned by `get_pages()` 1120 1127 */ 1121 1128 $html = apply_filters( 'wp_dropdown_pages', $output, $r, $pages ); 1122 1129 1123 1130 if ( $r['echo'] ) {