Warning: This function has been deprecated. Use wp_editor() instead.

tinymce_include() WordPress Function

The tinymce_include() function is a handy little function that allows you to include a specific TinyMCE plugin without having to include all of the other plugins that come with TinyMCE. This can be helpful if you only need to use a specific plugin on your site and you don't want to bloat your pages with unnecessary code.

tinymce_include() #


Description

Top ↑

See also


Top ↑

Source

File: wp-admin/includes/deprecated.php

function tinymce_include() {
	_deprecated_function( __FUNCTION__, '2.1.0', 'wp_editor()' );

	wp_tiny_mce();
}


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More