-
-
Save About2git/61772cd614a087a0ee4a to your computer and use it in GitHub Desktop.
Parse <br> in WordPress widget titles. Source: http://wpmu.org/wordpress-widget-title-html/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Enable line breaks in widget titles | |
add_filter( 'widget_title', 'html_widget_title' ); | |
function html_widget_title( $title ) { | |
$title = str_replace( '[', '<', $title ); | |
$title = str_replace( 'br]', 'br>', $title ); | |
return $title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment