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 |
|---|---|
| 1577 | if ( ! empty( $menu_obj->ID ) ) { |
| 1578 | $menu_obj = wp_setup_nav_menu_item( $menu_obj ); |
| 1579 | $menu_obj->title = empty( $menu_obj->title ) ? __( 'Menu Item' ) : $menu_obj->title; |
| 1580 | $menu_obj->label = $menu_obj->title; // Don't show "(pending)" in ajax-added items. |
| 1581 | $menu_items[] = $menu_obj; |
| 1582 | } |
| 1583 | } |
| 1584 | |
| 1585 | /** This filter is documented in wp-admin/includes/nav-menu.php */ |
| 1586 | $walker_class_name = apply_filters( 'wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', $_POST['menu'] ); |
| 1587 | |
| 1588 | if ( ! class_exists( $walker_class_name ) ) { |
| 1589 | wp_die( 0 ); |
| 1590 | } |
| 1591 | |
| 1592 | if ( ! empty( $menu_items ) ) { |
| 1593 | $args = array( |
| 1594 | 'after' => '', |
| 1595 | 'before' => '', |