wp_quicktags

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

WordPress Version: 4.6

/**
 * Handles quicktags.
 *
 * @deprecated 3.3.0 Use wp_editor()
 * @see wp_editor()
 */
function wp_quicktags()
{
    _deprecated_function(__FUNCTION__, '3.3.0', 'wp_editor()');
}

WordPress Version: 4.4

/**
 * Handles quicktags.
 *
 * @deprecated 3.3.0 Use wp_editor()
 * @see wp_editor()
 */
function wp_quicktags()
{
    _deprecated_function(__FUNCTION__, '3.3', 'wp_editor()');
}

WordPress Version: 3.7

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