wp_default_editor

Definition:
function wp_default_editor() {}

Find out which editor should be displayed by default.
Works out which of the two editors to display as the current editor for a user.

Return values

returns:Either ‘tinymce’, or ‘html’, or ‘test’

Defined filters

  • wp_default_editor
    apply_filters( 'wp_default_editor', $r )

Source code

function wp_default_editor() {

	$r = user_can_richedit() ? 'tinymce' : 'html'; // defaults

	if ( $user = wp_get_current_user() ) { // look for cookie

		$ed = get_user_setting('editor', 'tinymce');

		$r = ( in_array($ed, array('tinymce', 'html', 'test') ) ) ? $ed : $r;

	}

	return apply_filters( 'wp_default_editor', $r ); // filter

}

3573

No comments yet... Be the first to leave a reply!

Leave a comment