You appear to be a bot. Output may be restricted
Description
Input attributes for cover overlay opacity option.
Usage
$array = twentytwenty_customize_opacity_range();
Parameters
Returns
array Array containing attribute names and their values.
Source
File name: twentytwenty/classes/class-twentytwenty-customize.php
Lines:
1 to 21 of 21
function twentytwenty_customize_opacity_range() { /** * Filters the input attributes for opacity * * @param array $attrs { * The attributes * * @type int $min Minimum value * @type int $max Maximum value * @type int $step Interval between numbers * } */ return apply_filters( 'twentytwenty_customize_opacity_range', array( 'min' => 0, 'max' => 90, 'step' => 5, ) ); }