Title: breaks https and is obsolete
Last modified: September 2, 2016

---

# breaks https and is obsolete

 *  [here](https://wordpress.org/support/users/here/)
 * (@here)
 * [13 years ago](https://wordpress.org/support/topic/breaks-https-and-is-obsolete/)
 * still works, and may outlast the alternative solution below 🙂
 * this was causing issues with https in admin — and can be solved easily without
   a plugin as below.
 * add the following code to functions.php to enable the next-page button
    from 
   [http://wordpress.org/support/topic/bringing-nextpage-button-back](http://wordpress.org/support/topic/bringing-nextpage-button-back)
 *     ```
       add_filter('mce_buttons','wysiwyg_editor');
       function wysiwyg_editor($mce_buttons) {
           $pos = array_search('wp_more',$mce_buttons,true);
           if ($pos !== false) {
               $tmp_buttons = array_slice($mce_buttons, 0, $pos+1);
               $tmp_buttons[] = 'wp_page';
               $mce_buttons = array_merge($tmp_buttons, array_slice($mce_buttons, $pos+1));
           }
           return $mce_buttons;
       }
       ```
   

The topic ‘breaks https and is obsolete’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/nextpage-buttons_e1e1e1.svg)
 * [NextPage Buttons](https://wordpress.org/plugins/nextpage-buttons/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/nextpage-buttons/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/nextpage-buttons/)
 * [Active Topics](https://wordpress.org/support/plugin/nextpage-buttons/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/nextpage-buttons/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/nextpage-buttons/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [here](https://wordpress.org/support/users/here/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/breaks-https-and-is-obsolete/)