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 |
---|---|
619 | $menu_item->title = $menu_item->post_title; |
620 | $menu_item->url = empty( $menu_item->url ) ? get_post_meta( $menu_item->ID, '_menu_item_url', true ) : $menu_item->url; |
621 | } |
622 |
|
623 | $menu_item->target = empty( $menu_item->target ) ? get_post_meta( $menu_item->ID, '_menu_item_target', true ) : $menu_item->target; |
624 |
|
625 | $menu_item->attr_title = empty( $menu_item->attr_title ) ? apply_filters( 'nav_menu_attr_title', $menu_item->post_excerpt ) : $menu_item->attr_title; |
626 |
|
627 | if ( empty( $menu_item->description ) ) |
628 | $menu_item->description = apply_filters( 'nav_menu_description', wp_trim_words( $menu_item->post_content, 200 ) ); |
629 |
|
630 | $menu_item->classes = empty( $menu_item->classes ) ? (array) get_post_meta( $menu_item->ID, '_menu_item_classes', true ) : $menu_item->classes; |
631 | $menu_item->xfn = empty( $menu_item->xfn ) ? get_post_meta( $menu_item->ID, '_menu_item_xfn', true ) : $menu_item->xfn; |
632 | } else { |
633 | $menu_item->db_id = 0; |
634 | $menu_item->menu_item_parent = 0; |
635 | $menu_item->object_id = (int) $menu_item->ID; |
636 | $menu_item->type = 'post_type'; |
637 |
|
Line | Code |
641 |
|
642 | if ( '' === $menu_item->post_title ) |
643 | $menu_item->post_title = sprintf( __( '#%d (no title)' ), $menu_item->ID ); |
644 |
|
645 | $menu_item->title = $menu_item->post_title; |
646 | $menu_item->url = get_permalink( $menu_item->ID ); |
647 | $menu_item->target = ''; |
648 |
|
649 | $menu_item->attr_title = apply_filters( 'nav_menu_attr_title', '' ); |
650 | $menu_item->description = apply_filters( 'nav_menu_description', '' ); |
651 | $menu_item->classes = array(); |
652 | $menu_item->xfn = ''; |
653 | } |
654 | } elseif ( isset( $menu_item->taxonomy ) ) { |
655 | $menu_item->ID = $menu_item->term_id; |
656 | $menu_item->db_id = 0; |
657 | $menu_item->menu_item_parent = 0; |
658 | $menu_item->object_id = (int) $menu_item->term_id; |
659 | $menu_item->post_parent = (int) $menu_item->parent; |