The classic pre-WordPress version 4.8 text widget
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.
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’)
Yes, out of the box. To disable shortcode support, add remove_filter( ‘classic_widget_text’, ‘do_shortcode’ ) to your theme’s function file.
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.
Yes, but you have to be very careful and do it with SQL. See this post for details about how to bulk replace.
Bumped “Tested up to” tag
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’;
}