Make forced line break in title of text widget

You can work around that by passing widget_title through a filter : function custom_widget_title( $title ) { $title = str_replace( ‘__br__’, ‘<br/>’, $title ); return $title; } add_filter( ‘widget_title’, ‘custom_widget_title’ ); Now use __br__ in your widget title instead of <br/> and the code will replace it. Note: You need to put the code in … Read more

Add copies of the same text widget instance to multiple sidebars

A possible solution would be to enable shortcodes in the Text Widget. add_filter( ‘widget_text’, ‘do_shortcode’, 11 ); Then put the same shortcode (i.e.: “[business_hours]“) in all text widgets, and all of them will display the same content. It’s even possible to add some Conditionals Tags inside the shortcode definition to show different things according to … Read more