Skip to content

Instantly share code, notes, and snippets.

@antoniofrignani
Created June 4, 2012 09:49
Show Gist options
  • Save antoniofrignani/2867534 to your computer and use it in GitHub Desktop.
Save antoniofrignani/2867534 to your computer and use it in GitHub Desktop.
[WP] - Unregister default widgets
// http://wpsnipp.com/index.php/calendar/unregister-default-widgets/
// unregister all default WP Widgets
function unregister_default_wp_widgets() {
unregister_widget('WP_Widget_Pages');
unregister_widget('WP_Widget_Calendar');
unregister_widget('WP_Widget_Archives');
unregister_widget('WP_Widget_Links');
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');
unregister_widget('WP_Nav_Menu_Widget');
}
add_action('widgets_init', 'unregister_default_wp_widgets', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment