quotes_dlx_plugin_preview_modal_scripts

Filter the scripts print arguments in the preview modal.

You can use this filter to print out your own custom scripts in the preview modal.

Location: php/Ajax.php

/**
 * Filter the scripts print arguments for the preview modal.
 *
 * Add more handles to print.
 *
 * @since 1.0.0
 */
$modal_scripts = apply_filters(
	'quotes_dlx_plugin_preview_modal_scripts',
	array(
		'qdlx_twitter_actions',
		'qdlx_twitter_preview_js',
	)
);

Last updated