Skip to content

Instantly share code, notes, and snippets.

@loorlab
Created September 9, 2016 17:16
Show Gist options
  • Save loorlab/efca4f700517e095195aab255b303925 to your computer and use it in GitHub Desktop.
Save loorlab/efca4f700517e095195aab255b303925 to your computer and use it in GitHub Desktop.
<?php
/**
* functions.php
* Disable Title Widgets
*/
add_filter('widget_title','my_widget_title');
function my_widget_title($t){
return null;
}
?>
@josuevalrob
Copy link

How do you specify which widget you don't want to print the title??
add_filter('widget_title','my_wiget_name');
function my_widget_title($t){return null;}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment