Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_title

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
155           $attributes = '';
156           foreach ( $atts as $attr => $value ) {
157                if ( ! empty( $value ) ) {
158                     $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
159                     $attributes .= ' ' . $attr . '="' . $value . '"';
160                }
161           }
162
163           /** This filter is documented in wp-includes/post-template.php */
164           $title = apply_filters( 'the_title', $item->title, $item->ID );
165
166           /**
167            * Filter a menu item's title.
168            *
169            * @since 4.4.0
170            *
171            * @param string $title The menu item's title.
172            * @param object $item  The current menu item.
173            * @param array  $args  An array of {@see wp_nav_menu()} arguments.