popmake_core_text_align_options( $options )


Description Description


Source Source

File: includes/input-options.php

function popmake_core_text_align_options( $options ) {
	return array_merge( $options, array(
		// option => value
		__( 'Left', 'popup-maker' )   => 'left',
		__( 'Center', 'popup-maker' ) => 'center',
		__( 'Right', 'popup-maker' )  => 'right',
	) );
}

Top ↑

User Contributed Notes User Contributed Notes

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