tinymce_include

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

WordPress Version: 4.6

/**
 * Deprecated admin functions from past WordPress versions. You shouldn't use these
 * functions and look for the alternatives instead. The functions will be removed
 * in a later version.
 *
 * @package WordPress
 * @subpackage Deprecated
 */
/*
 * Deprecated functions come here to die.
 */
/**
 * @since 2.1.0
 * @deprecated 2.1.0 Use wp_editor()
 * @see wp_editor()
 */
function tinymce_include()
{
    _deprecated_function(__FUNCTION__, '2.1.0', 'wp_editor()');
    wp_tiny_mce();
}

WordPress Version: 4.4

/**
 * Deprecated admin functions from past WordPress versions. You shouldn't use these
 * functions and look for the alternatives instead. The functions will be removed
 * in a later version.
 *
 * @package WordPress
 * @subpackage Deprecated
 */
/*
 * Deprecated functions come here to die.
 */
/**
 * @since 2.1.0
 * @deprecated 2.1.0 Use wp_editor()
 * @see wp_editor()
 */
function tinymce_include()
{
    _deprecated_function(__FUNCTION__, '2.1', 'wp_editor()');
    wp_tiny_mce();
}

WordPress Version: 3.7

/**
 * Deprecated admin functions from past WordPress versions. You shouldn't use these
 * functions and look for the alternatives instead. The functions will be removed
 * in a later version.
 *
 * @package WordPress
 * @subpackage Deprecated
 */
/*
 * Deprecated functions come here to die.
 */
/**
 * @since 2.1.0
 * @deprecated 2.1.0
 * @deprecated Use wp_editor().
 * @see wp_editor()
 */
function tinymce_include()
{
    _deprecated_function(__FUNCTION__, '2.1', 'wp_editor()');
    wp_tiny_mce();
}