Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created September 12, 2012 09:20
Show Gist options
  • Save bryceadams/3705492 to your computer and use it in GitHub Desktop.
Save bryceadams/3705492 to your computer and use it in GitHub Desktop.
Hide Wordpress calendar widget title
// hide calendar widget title when no title has been added
function bryce_widget_title($title) {
return $title == ' ' ? '' : $title;
}
add_filter('widget_title', 'bryce_widget_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment