get_current_modal_theme( $key = null )


Description Description


Source Source

File: includes/importer/easy-modal-v2/model/theme.php

	function get_current_modal_theme( $key = null ) {
		global $current_theme;
		if ( ! $key ) {
			return $current_theme;
		} else {
			$values = $current_theme->as_array();

			return emresolve( $values, $key, false );
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

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