Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: navigation_widgets_format

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
87
88           echo $args['before_widget'];
89           if ( $title ) {
90                echo $args['before_title'] . $title . $args['after_title'];
91           }
92
93           $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml';
94
95           /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */
96           $format = apply_filters( 'navigation_widgets_format', $format );
97
98           if ( 'html5' === $format ) {
99                // The title may be filtered: Strip out HTML and make sure the aria-label is never empty.
100                $title      = trim( strip_tags( $title ) );
101                $aria_label = $title ? $title : $default_title;
102                echo '<nav role="navigation" aria-label="' . esc_attr( $aria_label ) . '">';
103           }
104
105           echo '<div class="tagcloud">';