delarge
8/24/2018 - 2:33 PM

Simple basic TinyMCE editors

		// ACF tinymce
		// https://www.advancedcustomfields.com/resources/customize-the-wysiwyg-toolbars/
		add_filter( 'acf/fields/wysiwyg/toolbars' , 'my_toolbars'  );
		function my_toolbars( $toolbars )
		{
			// Uncomment to view format of $toolbars

			// echo '< pre >';
			// 	print_r($toolbars);
			// echo '< /pre >';
			// die;


			// Add a new toolbar called "Very Simple"
			// - this toolbar has only 1 row of buttons
			$toolbars['Simple'] = array();
			$toolbars['Simple'][1] = array('formatselect','bold' , 'italic' , 'link', 'bullist', 'numlist' );

			$toolbars['Very Simple'] = array();
			$toolbars['Very Simple'][1] = array('bold' , 'italic' , 'link', 'bullist', 'numlist' );


			// Edit the "Full" toolbar and remove 'code'
			// - delet from array code from http://stackoverflow.com/questions/7225070/php-array-delete-by-value-not-key
			if( ($key = array_search('code' , $toolbars['Full' ][2])) !== false )
			{
			    unset( $toolbars['Full' ][2][$key] );
			}

			// remove the 'Basic' toolbar completely
			//unset( $toolbars['Basic' ] );

			// return $toolbars - IMPORTANT!
			return $toolbars;
		}