Skip to content

Instantly share code, notes, and snippets.

@davatron5000
Created January 23, 2012 22:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davatron5000/1665812 to your computer and use it in GitHub Desktop.
Save davatron5000/1665812 to your computer and use it in GitHub Desktop.
WordPress Remove Widget Titles
<?php
// Register widgetized sidebar.
register_sidebar(array(
// See: http://codex.wordpress.org/Function_Reference/register_sidebar
'before_title' => '',
'after_title' => ''
));
add_filter( 'widget_title', 'remove_widget_titles');
function remove_widget_titles( $widget_title ) {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment