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 |
---|---|
89 | * |
90 | * @since 3.0.0 |
91 | * |
92 | * @see wp_nav_menu() |
93 | * |
94 | * @param array $classes The CSS classes that are applied to the menu item's <li>. |
95 | * @param object $item The current menu item. |
96 | * @param array $args An array of wp_nav_menu() arguments. |
97 | */ |
98 | $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) ); |
99 | $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
100 |
|
101 | /** |
102 | * Filter the ID applied to a menu item's <li>. |
103 | * |
104 | * @since 3.0.1 |
105 | * |
106 | * @see wp_nav_menu() |
107 | * |