navigation_markup_template хук-фильтр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" aria-label="%4$s">
	<h2 class="screen-reader-text">%2$s</h2>
	<div class="nav-links">%3$s</div>
</nav>

Использование

add_filter( 'navigation_markup_template', 'wp_kama_navigation_markup_template_filter', 10, 2 );

/**
 * Function for `navigation_markup_template` filter-hook.
 * 
 * @param string $template  The default template.
 * @param string $css_class The class passed by the calling function.
 *
 * @return string
 */
function wp_kama_navigation_markup_template_filter( $template, $css_class ){

	// filter...
	return $template;
}
$template(строка)
The default template.
$css_class(строка)
The class passed by the calling function.

Список изменений

С версии 4.4.0 Введена.

Где вызывается хук

_navigation_markup()
navigation_markup_template
wp-includes/link-template.php 3040
$template = apply_filters( 'navigation_markup_template', $template, $css_class );

Где используется хук в WordPress

Использование не найдено.