Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 24, 2014 11:09
Show Gist options
  • Save billerickson/9738336 to your computer and use it in GitHub Desktop.
Save billerickson/9738336 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove Genesis widgets.
*
* @since 1.0.0
*/
function ea_remove_genesis_widgets() {
unregister_widget( 'Genesis_Featured_Page' );
unregister_widget( 'Genesis_Featured_Post' );
unregister_widget( 'Genesis_User_Profile_Widget' );
}
add_action( 'widgets_init', 'ea_remove_genesis_widgets', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment