_WP_Editors::get_baseurl(): string

Returns the TinyMCE base URL.


Return

string


Top ↑

Source

File: wp-includes/class-wp-editor.php. View all references

public static function get_baseurl() {
	if ( empty( self::$baseurl ) ) {
		self::$baseurl = includes_url( 'js/tinymce' );
	}

	return self::$baseurl;
}


Top ↑

Changelog

Changelog
Version Description
4.8.0 Introduced.

Top ↑

User Contributed Notes

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