emodal_delete_option( $key )


Description Description


Source Source

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

	function emodal_delete_option( $key ) {
		global $blog_id;
		if ( function_exists( 'is_multisite' ) && is_multisite() && $blog_id ) {
			return delete_blog_option( $blog_id, $key );
		} else {
			return delete_site_option( $key );
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

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