wp_preload_dialogs

The timeline below displays how wordpress function wp_preload_dialogs has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Preloads TinyMCE dialogs.
 *
 * @deprecated 3.3.0 Use wp_editor()
 * @see wp_editor()
 */
function wp_preload_dialogs()
{
    _deprecated_function(__FUNCTION__, '3.3.0', 'wp_editor()');
}

WordPress Version: 4.4

/**
 * Preloads TinyMCE dialogs.
 *
 * @deprecated 3.3.0 Use wp_editor()
 * @see wp_editor()
 */
function wp_preload_dialogs()
{
    _deprecated_function(__FUNCTION__, '3.3', 'wp_editor()');
}

WordPress Version: 3.7

/**
 * @deprecated 3.3.0
 * @deprecated Use wp_editor()
 * @see wp_editor()
 */
function wp_preload_dialogs()
{
    _deprecated_function(__FUNCTION__, '3.3', 'wp_editor()');
}