Created
July 29, 2015 16:17
-
-
Save gspice/54d5db07beef5171301e to your computer and use it in GitHub Desktop.
Remove the Content Archives section from Genesis > Theme Settings.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'genesis_theme_settings_metaboxes', 'themeprefix_remove_genesis_metaboxes' ); | |
function themeprefix_remove_genesis_metaboxes( $_genesis_theme_settings_pagehook ) { | |
remove_meta_box( 'genesis-theme-settings-posts', $_genesis_theme_settings_pagehook, 'main' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment