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 |
|---|---|
| 634 | } |
| 635 | $menu_item_value[ $key ] = implode( ' ', array_map( 'sanitize_html_class', $value ) ); |
| 636 | } |
| 637 | |
| 638 | $menu_item_value['original_title'] = sanitize_text_field( $menu_item_value['original_title'] ); |
| 639 | |
| 640 | // Apply the same filters as when calling wp_insert_post(). |
| 641 | $menu_item_value['title'] = apply_filters( 'title_save_pre', $menu_item_value['title'] ); |
| 642 | $menu_item_value['attr_title'] = apply_filters( 'excerpt_save_pre', $menu_item_value['attr_title'] ); |
| 643 | $menu_item_value['description'] = apply_filters( 'content_save_pre', $menu_item_value['description'] ); |
| 644 | |
| 645 | $menu_item_value['url'] = esc_url_raw( $menu_item_value['url'] ); |
| 646 | if ( 'publish' !== $menu_item_value['status'] ) { |
| 647 | $menu_item_value['status'] = 'draft'; |
| 648 | } |
| 649 | |
| 650 | $menu_item_value['_invalid'] = (bool) $menu_item_value['_invalid']; |
| 651 | |
| 652 | /** This filter is documented in wp-includes/class-wp-customize-setting.php */ |