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
425           $value['description'] = sanitize_text_field( $value['description'] );
426           $value['parent']      = max( 0, intval( $value['parent'] ) );
427           $value['auto_add']    = ! empty( $value['auto_add'] );
428
429           if ( '' === $value['name'] ) {
430                $value['name'] = _x( '(unnamed)', 'Missing menu name.' );
431           }
432
433           /** This filter is documented in wp-includes/class-wp-customize-setting.php */
434           return apply_filters( "customize_sanitize_{$this->id}", $value, $this );
435      }
436
437      /**
438       * Storage for data to be sent back to client in customize_save_response filter.
439       *
440       * See {@see 'customize_save_response'}.
441       *
442       * @since 4.3.0
443       * @var array