page_menu_link_attributes filter-hook . WP 4.8.0
Filters the HTML attributes applied to a page menu item's anchor element.
Usage
add_filter( 'page_menu_link_attributes', 'filter_function_name_7838', 10, 5 ); function filter_function_name_7838( $atts, $page, $depth, $args, $current_page ){ // filter... return $atts; }
- $atts(array)
The HTML attributes applied to the menu item's <a> element, empty strings are ignored.
-
href(string)
The href attribute. - aria_current(string)
The aria-current attribute.
-
- $page(WP_Post)
- Page data object.
- $depth(int)
- Depth of page, used for padding.
- $args(array)
- An array of arguments.
- $current_page(int)
- ID of the current page.
Changelog
Since 4.8.0 | Introduced. |
Where the hook is called
wp-includes/class-walker-page.php 183
$atts = apply_filters( 'page_menu_link_attributes', $atts, $page, $depth, $args, $current_page );