Skip to content

Instantly share code, notes, and snippets.

@meetbryce
Created July 24, 2013 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meetbryce/6068294 to your computer and use it in GitHub Desktop.
Save meetbryce/6068294 to your computer and use it in GitHub Desktop.
Remove Default Wordpress Widgets (add to functions.php)
function unregister_default_wp_widgets() {
unregister_widget('WP_Widget_Pages');
unregister_widget('WP_Nav_Menu_Widget');
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_Categories');
unregister_widget('WP_Widget_Recent_Comments');
unregister_widget('WP_Widget_RSS');
unregister_widget('WP_Widget_Tag_Cloud');
}
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