emodal_update_option( $key,  $value )


Description Description


Source Source

File: includes/importer/easy-modal-v2/functions.php

	function emodal_update_option( $key, $value ) {
		global $blog_id;
		if ( function_exists( 'is_multisite' ) && is_multisite() && $blog_id ) {
			return update_blog_option( $blog_id, $key, $value );
		} else {
			return update_site_option( $key, $value );
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

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