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 |
---|---|
717 | // Apply the same filters as when calling wp_insert_post(). |
718 |
|
719 | /** This filter is documented in wp-includes/post.php */ |
720 | $menu_item_value['title'] = wp_unslash( apply_filters( 'title_save_pre', wp_slash( $menu_item_value['title'] ) ) ); |
721 |
|
722 | /** This filter is documented in wp-includes/post.php */ |
723 | $menu_item_value['attr_title'] = wp_unslash( apply_filters( 'excerpt_save_pre', wp_slash( $menu_item_value['attr_title'] ) ) ); |
724 |
|
725 | /** This filter is documented in wp-includes/post.php */ |
726 | $menu_item_value['description'] = wp_unslash( apply_filters( 'content_save_pre', wp_slash( $menu_item_value['description'] ) ) ); |
727 |
|
728 | if ( '' !== $menu_item_value['url'] ) { |
729 | $menu_item_value['url'] = sanitize_url( $menu_item_value['url'] ); |
730 | if ( '' === $menu_item_value['url'] ) { |
731 | return new WP_Error( 'invalid_url', __( 'Invalid URL.' ) ); // Fail sanitization if URL is invalid. |
732 | } |
733 | } |
734 | if ( 'publish' !== $menu_item_value['status'] ) { |
735 | $menu_item_value['status'] = 'draft'; |