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.
This hook occurs 2 times in this file.
Line | Code |
---|---|
754 |
|
755 | if ( ! isset( $menu_item->description ) ) { |
756 | /** |
757 | * Filter a navigation menu item's description. |
758 | * |
759 | * @since 3.0.0 |
760 | * |
761 | * @param string $description The menu item description. |
762 | */ |
763 | $menu_item->description = apply_filters( 'nav_menu_description', wp_trim_words( $menu_item->post_content, 200 ) ); |
764 | } |
765 |
|
766 | $menu_item->classes = ! isset( $menu_item->classes ) ? (array) get_post_meta( $menu_item->ID, '_menu_item_classes', true ) : $menu_item->classes; |
767 | $menu_item->xfn = ! isset( $menu_item->xfn ) ? get_post_meta( $menu_item->ID, '_menu_item_xfn', true ) : $menu_item->xfn; |
768 | } else { |
769 | $menu_item->db_id = 0; |
770 | $menu_item->menu_item_parent = 0; |
771 | $menu_item->object_id = (int) $menu_item->ID; |
772 | $menu_item->type = 'post_type'; |
Line | Code |
782 |
|
783 | $menu_item->title = $menu_item->post_title; |
784 | $menu_item->url = get_permalink( $menu_item->ID ); |
785 | $menu_item->target = ''; |
786 |
|
787 | /** This filter is documented in wp-includes/nav-menu.php */ |
788 | $menu_item->attr_title = apply_filters( 'nav_menu_attr_title', '' ); |
789 |
|
790 | /** This filter is documented in wp-includes/nav-menu.php */ |
791 | $menu_item->description = apply_filters( 'nav_menu_description', '' ); |
792 | $menu_item->classes = array(); |
793 | $menu_item->xfn = ''; |
794 | } |
795 | } elseif ( isset( $menu_item->taxonomy ) ) { |
796 | $menu_item->ID = $menu_item->term_id; |
797 | $menu_item->db_id = 0; |
798 | $menu_item->menu_item_parent = 0; |
799 | $menu_item->object_id = (int) $menu_item->term_id; |
800 | $menu_item->post_parent = (int) $menu_item->parent; |