Classic Text Widget

Plugin Banner

Classic Text Widget

by Victor Font

Download
Description

Brings back the classic WordPress text widget without TinyMCE. This is based on the code from WordPress Ver. 4.7.5

Functionality is exactly the same as the pre-version 4.8 text widget. Additional default functionality includes shortcode execution and custom class filter.

Note: This widget uses PHP namespaces to prevent conflicts with other widgets of a similar nature. PHP namespaces are only supported in PHP Version 5.3.0 and higher. If your site uses a PHP version earlier than 5.3.0, do not install this widget unless your PHP version is upgraded first.

  1. Activate the plugin through the ‘Plugins’ menu in WordPress
  1. Classic Text Widget on WordPress Admin Appearance/Widgets menu

    Classic Text Widget on WordPress Admin Appearance/Widgets menu

  2. Classic Text Widget added to Primary Sidebar

    Classic Text Widget added to Primary Sidebar

Do the original text widget filters work with the Classic Text Widget?

Yes and no. Filters that apply to the widget title remain the same to maintain compatibility across WordPress. Filters that apply to to the widget’s content now use add_filter(‘classic_widget_text’, ‘my_function’)

Does the plugin support shortcodes?

Yes, out of the box. To disable shortcode support, add remove_filter( ‘classic_widget_text’, ‘do_shortcode’ ) to your theme’s function file.

Does the plugin directly execute PHP?

No, it does not directly support executing PHP. The widget does support shortcodes however. If you want to execute PHP in this widget, write your code as a shortcode and it will run.

I have a lot of text widgets on my site, is there a way to bulk transfer the content from the new WordPress text widget and place it into the Classic Text Widget?

Yes, but you have to be very careful and do it with SQL. See this post for details about how to bulk replace.

Lifesaver

By Christoph (camthor) on September 12, 2017

The default text widget broke my shortcodes. Thanks for providing an easily solution!

Great For HTML

By Lee Blue (reality66) on July 20, 2017

I was about to make this exact plugin. Thank you for putting this together. Works perfectly!

Wish I Found This Sooner

By editork on July 18, 2017

A week shot, but at least we're back to pre-update functionality. Thanks a M I L L I O N !!!

hallelujah!

By BitEdge (Whatwhatwhatwhat) on July 15, 2017

This bug in WP core and then this fix encompases all that is bad and all that is good about WP.

Saved by the bell ... Awesome!

By ahmedmusawir on July 4, 2017

Thank you for rescuing us from the latest WP 4.8 text widget disaster ... keep us the awesome work. Thanx again...

Cheers.

By Kramarz on July 3, 2017

Cheers for the plugin. As much as I like visual editor functionality brought to widgets in WP 4.8, we DO need that classic functionality as well! Hope they will fix it one way or another in some WP 4.8.1 or something... So again, big thanks for the plugin!

Total lifesaver, thanks!

By Makeworthy Media (jennettefulda) on June 26, 2017

Thanks so much for creating this plugin. The WordPress core team doesn't seem to understand that the appeal of the Text widget was that it was just that, a text widget, not a visual editor. I'm so pissed that now all my text widgets on my clients' sites are defaulting to the Visual Editor view, screwing up code that was never meant to be used in a Visual Editor. It's one of the stupidest things the core team has done in awhile. If they wanted to add that functionality they should have made it a whole new widget, not screwed with all the existing widgets. *sigh* Anyway, this helps a lot. Thanks again!

Simple solution to prevent icon fonts from being deleted

By cthieba on June 19, 2017

The WordPress 4.8 text widget will remove icon fonts each time the widget is opened for editing since they are "empty" html tags. This widget provides a simple alternative to avoid that problem. Thanks for solving my problem for me.

You saved my day

By Edgar Grill (edgargrill) on June 14, 2017

HTML and CSS now working as usual; thank you very much for getting into the repo so soon!

Life saver

By cleanpagedesign on June 13, 2017

Thanks for getting this out so quickly. I appreciate that progress has to be made and casual users accounted for, but this shift away from the HTML widget was a concern. This is a great fix.

1.0.2

Bumped “Tested up to” tag

1.0.1

Added filter so you can provide your own custom class for the widget. If you choose not to create your own class, the default secondary class is custom-classic-textwidget.

Usage:

add_filter( ‘classic_text_widget_class’, ‘my_classic_text_widget_class’ );
function my_classic_text_widget_class( $class ) {
return ‘my_classic_text_widget_class’;
}

1.0.0

  • Initial commit based on WordPress 4.7.5 Text Widget and plugin conversion by carasmo
  • Restores the pre 4.8 Classic WordPress text widget just like the good old days.
Back to top