wp_tiny_mce()WP 2.7.0

Deprecated from version 3.3.0. It is no longer supported and can be removed in future releases. Use wp_editor() instead.

Outputs the TinyMCE editor.

No Hooks.

Return

null. Nothing (null).

Usage

wp_tiny_mce( $teeny, $settings );
$teeny **
-
Default: false
$settings **
-
Default: false

Notes

Changelog

Since 2.7.0 Introduced.
Deprecated since 3.3.0 Use wp_editor()

wp_tiny_mce() code WP 6.5.2

function wp_tiny_mce( $teeny = false, $settings = false ) {
	_deprecated_function( __FUNCTION__, '3.3.0', 'wp_editor()' );

	static $num = 1;

	if ( ! class_exists( '_WP_Editors', false ) )
		require_once ABSPATH . WPINC . '/class-wp-editor.php';

	$editor_id = 'content' . $num++;

	$set = array(
		'teeny' => $teeny,
		'tinymce' => $settings ? $settings : true,
		'quicktags' => false
	);

	$set = _WP_Editors::parse_settings($editor_id, $set);
	_WP_Editors::editor_settings($editor_id, $set);
}