navigation_markup_template filter-hook . WP 4.4.0
Filters the navigation markup template.
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" role="navigation" aria-label="%4$s"> <h2 class="screen-reader-text">%2$s</h2> <div class="nav-links">%3$s</div> </nav>
Usage
add_filter( 'navigation_markup_template', 'filter_function_name_5944', 10, 2 ); function filter_function_name_5944( $template, $class ){ // filter... return $template; }
- $template(string)
- The default template.
- $class(string)
- The class passed by the calling function.
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
navigation_markup_template
wp-includes/link-template.php 2824
$template = apply_filters( 'navigation_markup_template', $template, $class );