Changeset 37500
- Timestamp:
- 05/22/2016 06:27:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/nav-menu-template.php
r37342 r37500 87 87 88 88 /** 89 * Filter the arguments for a single nav menu item.89 * Filters the arguments for a single nav menu item. 90 90 * 91 91 * @since 4.4.0 … … 98 98 99 99 /** 100 * Filter the CSS class(es) applied to a menu item's list item element.100 * Filters the CSS class(es) applied to a menu item's list item element. 101 101 * 102 102 * @since 3.0.0 … … 112 112 113 113 /** 114 * Filter the ID applied to a menu item's list item element.114 * Filters the ID applied to a menu item's list item element. 115 115 * 116 116 * @since 3.0.1 … … 134 134 135 135 /** 136 * Filter the HTML attributes applied to a menu item's anchor element.136 * Filters the HTML attributes applied to a menu item's anchor element. 137 137 * 138 138 * @since 3.6.0 … … 165 165 166 166 /** 167 * Filter a menu item's title.167 * Filters a menu item's title. 168 168 * 169 169 * @since 4.4.0 … … 183 183 184 184 /** 185 * Filter a menu item's starting output.185 * Filters a menu item's starting output. 186 186 * 187 187 * The menu item's starting output only includes `$args->before`, the opening `<a>`, … … 259 259 $args = wp_parse_args( $args, $defaults ); 260 260 /** 261 * Filter the arguments used to display a navigation menu.261 * Filters the arguments used to display a navigation menu. 262 262 * 263 263 * @since 3.0.0 … … 271 271 272 272 /** 273 * Filter whether to short-circuit the wp_nav_menu() output.273 * Filters whether to short-circuit the wp_nav_menu() output. 274 274 * 275 275 * Returning a non-null value to the filter will short-circuit … … 341 341 if ( $args->container ) { 342 342 /** 343 * Filter the list of HTML tags that are valid for use as menu containers.343 * Filters the list of HTML tags that are valid for use as menu containers. 344 344 * 345 345 * @since 3.0.0 … … 378 378 379 379 /** 380 * Filter the sorted list of menu item objects before generating the menu's HTML.380 * Filters the sorted list of menu item objects before generating the menu's HTML. 381 381 * 382 382 * @since 3.1.0 … … 407 407 408 408 /** 409 * Filter the HTML list content for navigation menus.409 * Filters the HTML list content for navigation menus. 410 410 * 411 411 * @since 3.0.0 … … 418 418 $items = apply_filters( 'wp_nav_menu_items', $items, $args ); 419 419 /** 420 * Filter the HTML list content for a specific navigation menu.420 * Filters the HTML list content for a specific navigation menu. 421 421 * 422 422 * @since 3.0.0 … … 440 440 441 441 /** 442 * Filter the HTML content for navigation menus.442 * Filters the HTML content for navigation menus. 443 443 * 444 444 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.