popmake_core_size_unit_options( $options )


Description Description


Source Source

File: includes/input-options.php

function popmake_core_size_unit_options( $options ) {
	return array_merge( $options, array(
		// option => value
		'px'  => 'px',
		'%'   => '%',
		'em'  => 'em',
		'rem' => 'rem',
	) );
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.