Note: The filtered template HTML must contain specifiers for the navigation class (%1$s), the screen-reader-text value (%2$s), placement of the navigation links (%3$s), and ARIA label text if screen-reader-text does not fit that (%4$s): <nav class="navigation %1$s" aria-label="%4$s">
<h2 class="screen-reader-text">%2$s</h2>
<div class="nav-links">%3$s</div>
</nav>
3049*3050* @since 4.4.03051*3052* @param string$template The default template.3053* @param string$css_class The classpassed by the calling function.3054*/3055$template=apply_filters('navigation_markup_template',$template,$css_class);30563057returnsprintf($template,sanitize_html_class($css_class),esc_html($screen_reader_text),$links,esc_attr($aria_label));3058}30593060/**3061* Retrieves the comments page number link.
History
Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.