Warning: This function has been deprecated.

rich_edit_exists(): bool

Determine if TinyMCE is available.


Description

Checks to see if the user has deleted the tinymce files to slim down their WordPress installation.


Top ↑

Return

bool Whether TinyMCE exists.


Top ↑

Source

File: wp-includes/deprecated.php. View all references

function rich_edit_exists() {
	global $wp_rich_edit_exists;
	_deprecated_function( __FUNCTION__, '3.9.0' );

	if ( ! isset( $wp_rich_edit_exists ) )
		$wp_rich_edit_exists = file_exists( ABSPATH . WPINC . '/js/tinymce/tinymce.js' );

	return $wp_rich_edit_exists;
}


Top ↑

Changelog

Changelog
Version Description
3.9.0 This function has been deprecated.
2.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.