popmake_core_theme_close_location_options( $options )


Description Description


Source Source

File: includes/input-options.php

function popmake_core_theme_close_location_options( $options ) {
	return array_merge( $options, array(
		// option => value
		__( 'Top Left', 'popup-maker' )     => 'topleft',
		__( 'Top Right', 'popup-maker' )    => 'topright',
		__( 'Bottom Left', 'popup-maker' )  => 'bottomleft',
		__( 'Bottom Right', 'popup-maker' ) => 'bottomright',
	) );
}

Top ↑

User Contributed Notes User Contributed Notes

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