popmake_core_popup_display_location_options( $options )


Description Description


Source Source

File: includes/input-options.php

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

Top ↑

User Contributed Notes User Contributed Notes

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