Ticket #31315: 31315.patch
File 31315.patch, 745 bytes (added by , 10 years ago) |
---|
-
wp-includes/link-template.php
2401 2401 <h2 class="screen-reader-text">%2$s</h2> 2402 2402 <div class="nav-links">%3$s</div> 2403 2403 </nav>'; 2404 /** 2405 * Filter the navigation markup template. 2406 * 2407 * @since 4.2.0 2408 * 2409 * @param string $template The default template 2410 * @param string $class The class passed by the calling function. 2411 * @return string Navigation template. 2412 */ 2413 apply_filters( 'navigation_markup_template', $template, $class ); 2404 2414 2405 2415 return sprintf( $template, sanitize_html_class( $class ), esc_html( $screen_reader_text ), $links ); 2406 2416 }