_WP_Editors::get_baseurl(): string

In this article

Returns the TinyMCE base URL.

Return

string

Source

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

	return self::$baseurl;
}

Changelog

VersionDescription
4.8.0Introduced.

User Contributed Notes

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