popmake_emodal_init()


Description Description


Source Source

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

function popmake_emodal_init() {
	if ( pum_get_option( 'enable_easy_modal_compatibility_mode' ) ) {
		if ( ! shortcode_exists( 'modal' ) ) {
			add_shortcode( 'modal', 'popmake_emodal_shortcode_modal' );
		}
		add_filter( 'pum_popup_data_attr', 'popmake_emodal_get_the_popup_data_attr', 10, 2 );
		add_filter( 'popmake_shortcode_popup_default_atts', 'popmake_emodal_shortcode_popup_default_atts', 10, 2 );
		add_filter( 'popmake_shortcode_data_attr', 'popmake_emodal_shortcode_data_attr', 10, 2 );

		add_filter( 'pum_popup_is_loadable', 'popmake_emodal_popup_is_loadable', 20, 2 );
	}
}


Top ↑

User Contributed Notes User Contributed Notes

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