Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created February 24, 2013 12:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/5023738 to your computer and use it in GitHub Desktop.
Save braddalton/5023738 to your computer and use it in GitHub Desktop.
This code removes all the current default widgets from loading and can be modified to your own needs.
function remove_wordpress_widgets() {
unregister_widget('WP_Widget_Pages');
unregister_widget('WP_Widget_Calendar');
unregister_widget('WP_Widget_Archives');
unregister_widget('WP_Widget_Meta');
unregister_widget('WP_Widget_Search');
unregister_widget('WP_Widget_Text');
unregister_widget('WP_Widget_Categories');
unregister_widget('WP_Widget_Recent_Posts');
unregister_widget('WP_Widget_Recent_Comments');
unregister_widget('WP_Widget_RSS');
unregister_widget('WP_Widget_Tag_Cloud');
}
add_action('widgets_init', 'remove_wordpress_widgets', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment