Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_sanitize_{$this->id}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
434           $value['description'] = sanitize_text_field( $value['description'] );
435           $value['parent']      = max( 0, intval( $value['parent'] ) );
436           $value['auto_add']    = ! empty( $value['auto_add'] );
437
438           if ( '' === $value['name'] ) {
439                $value['name'] = _x( '(unnamed)', 'Missing menu name.' );
440           }
441
442           /** This filter is documented in wp-includes/class-wp-customize-setting.php */
443           return apply_filters( "customize_sanitize_{$this->id}", $value, $this );
444      }
445
446      /**
447       * Storage for data to be sent back to client in customize_save_response filter.
448       *
449       * See {@see 'customize_save_response'}.
450       *
451       * @since 4.3.0
452       * @var array