Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_validate_{$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
556            *
557            * The dynamic portion of the hook name, `$this->ID`, refers to the setting ID.
558            *
559            * @since 4.6.0
560            *
561            * @param WP_Error             $validity Filtered from `true` to `WP_Error` when invalid.
562            * @param mixed                $value    Value of the setting.
563            * @param WP_Customize_Setting $this     WP_Customize_Setting instance.
564            */
565           $validity = apply_filters( "customize_validate_{$this->id}", $validity, $value, $this );
566
567           if ( is_wp_error( $validity ) && empty( $validity->errors ) ) {
568                $validity = true;
569           }
570           return $validity;
571      }
572
573      /**
574       * Get the root value for a setting, especially for multidimensional ones.