Title: twick's Replies | WordPress.org

---

# twick

  [  ](https://wordpress.org/support/users/twick/)

 *   [Profile](https://wordpress.org/support/users/twick/)
 *   [Topics Started](https://wordpress.org/support/users/twick/topics/)
 *   [Replies Created](https://wordpress.org/support/users/twick/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/twick/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/twick/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/twick/engagements/)
 *   [Favorites](https://wordpress.org/support/users/twick/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [WordPress 3.3 breaks wp_tiny_mce(()](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/)
 *  Thread Starter [twick](https://wordpress.org/support/users/twick/)
 * (@twick)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/#post-2446318)
 * jbmw look at the “tinymce” setting [http://codex.wordpress.org/Function_Reference/wp_editor](http://codex.wordpress.org/Function_Reference/wp_editor)
 * Looks like you can pass setting directly to tinymce.
 * So it would be something like
 *     ```
       <?php
       $tinymcesetting = array("theme_advanced_buttons1" => "bold,italic,underline,separator,bullist,numlist,separator,undo,redo");
   
       wp_editor( $content, $editor_id, array("tinymce" => $tinymcesettings));
   
       ?>
       ```
   
 * Actually… scratch all that just do this with the code you already have;
 * wp_editor( $content, $editor_id, array(“tinymce” => $a));
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [WordPress 3.3 breaks wp_tiny_mce(()](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/)
 *  Thread Starter [twick](https://wordpress.org/support/users/twick/)
 * (@twick)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/#post-2446259)
 * Never mind… I just did a /facepalm.
    Just realized I was in HTML mode when adding
   text… so “wpautop”=> false works like a charm.
 * I appreciate the assist.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [WordPress 3.3 breaks wp_tiny_mce(()](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/)
 *  Thread Starter [twick](https://wordpress.org/support/users/twick/)
 * (@twick)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/#post-2446239)
 * Yeah, I tried that. Didnt work. I’ll look at the arguments
 * <?=wp_editor( @$_POST[‘content’], “content”, array(“wpautop”=> false))?> (also
   tried putting “false” in quotes.)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [WordPress 3.3 breaks wp_tiny_mce(()](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/)
 *  Thread Starter [twick](https://wordpress.org/support/users/twick/)
 * (@twick)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/wordpress-33-breaks-wp_tiny_mce/#post-2446226)
 * [@rev](https://wordpress.org/support/users/rev/)
    Thanks! I am using wp_editor
   instead and it works great. I appreciate the link. Lots of good info there.
 * While we are on the topic, is there an easy way to stop the editor from stripping
   the paragraph tags?

Viewing 4 replies - 1 through 4 (of 4 total)