WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
75 |
|
76 | $args['link_before'] = empty( $args['link_before'] ) ? '' : $args['link_before']; |
77 | $args['link_after'] = empty( $args['link_after'] ) ? '' : $args['link_after']; |
78 |
|
79 | $atts = array(); |
80 | $atts['href'] = get_permalink( $page->ID ); |
81 | $atts['aria-current'] = ( $page->ID === $current_page ) ? 'page' : ''; |
82 |
|
83 | /** This filter is documented in wp-includes/class-walker-page.php */ |
84 | $atts = apply_filters( 'page_menu_link_attributes', $atts, $page, $depth, $args, $current_page ); |
85 |
|
86 | $attributes = ''; |
87 | foreach ( $atts as $attr => $value ) { |
88 | if ( ! empty( $value ) ) { |
89 | $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); |
90 | $attributes .= ' ' . $attr . '="' . $value . '"'; |
91 | } |
92 | } |
93 |
|