Skip to content

Instantly share code, notes, and snippets.

@anneallen
Created October 13, 2013 20:20
Show Gist options
  • Save anneallen/6966997 to your computer and use it in GitHub Desktop.
Save anneallen/6966997 to your computer and use it in GitHub Desktop.
Allow line breaks and spans in widget title
/**Allow line breaks and spans in widget title*/
add_filter('widget_title','my_widget_title',10,3);
function my_widget_title($title)
{
$title = str_replace("[br]", "<br/>", $title);
$title = str_replace("[sp]", "<span>", $title);
$title = str_replace("[/sp]", "</span>", $title);
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment