apply_filters( 'navigation_markup_template', string $template, string $class )

Filters the navigation markup template.


Description

Note: The filtered template HTML must contain specifiers for the navigation class (%1$s), the screen-reader-text value (%2$s), and placement of the navigation links (%3$s):

<nav class="navigation %1$s" role="navigation">
    <h2 class="screen-reader-text">%2$s</h2>
    <div class="nav-links">%3$s</div>
</nav>

Parameters

$template

(string) The default template.

$class

(string) The class passed by the calling function.


Return

(string) Navigation template.


Source

File: wp-includes/link-template.php

View on GitHub



Changelog

Changelog
Version Description
WP-4.4.0 Introduced.