Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: twentytwenty_customize_opacity_range

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
488       *
489       * @param array $attrs {
490       *     The attributes
491       *
492       *     @type int $min Minimum value
493       *     @type int $max Maximum value
494       *     @type int $step Interval between numbers
495       * }
496       */
497      return apply_filters(
498           'twentytwenty_customize_opacity_range',
499           array(
500                'min'  => 0,
501                'max'  => 90,
502                'step' => 5,
503           )
504      );
505 }
506