patric-boehner
8/5/2015 - 2:59 PM

Disable TinyMCE for specific page

Disable TinyMCE for specific page

<?php
/**
 * Disable visual TinyMCE editor for specifc page/post
 *
 * @since 1.0.0
 */
function ja_disable_fancy_editor( $can ) {
	global $post;

	if ( 3441 == $post->ID ) {
		return false;
	}

	return $can;
}
add_filter( 'user_can_richedit', 'ja_disable_fancy_editor' );