Title: Activating Table Plugin For TinyMCE
Last modified: August 20, 2016

---

# Activating Table Plugin For TinyMCE

 *  [kobrien21](https://wordpress.org/support/users/kobrien21/)
 * (@kobrien21)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/activating-table-plugin-for-tinymce/)
 * Hi There,
 * I am trying to add the table plugin for TinyMCE. I have downloaded the full version
   from moxiecode and placed the table folder in /wp-includes/js/tinymce/plugins.
 * Next I added the following code to the functions.php file from within my theme:
 *     ```
       function myplugin_addbuttons() {
   
          if ( get_user_option('rich_editing') == 'true') {
            add_filter('mce_buttons', 'register_myplugin_button');
          }
       }
   
       function register_myplugin_button($buttons) {
          array_push($buttons, "tablecontrol");
          return $buttons;
       }
   
       // init process for button control
       add_action('init', 'myplugin_addbuttons');
       ```
   
 * The buttons are still is not showing in the editor. Can someone advise where 
   I am going wrong?
 * Thanks,
 * Kris

The topic ‘Activating Table Plugin For TinyMCE’ is closed to new replies.

 * 0 replies
 * 1 participant
 * Last reply from: [kobrien21](https://wordpress.org/support/users/kobrien21/)
 * Last activity: [14 years, 10 months ago](https://wordpress.org/support/topic/activating-table-plugin-for-tinymce/)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
