Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gspice/54d5db07beef5171301e to your computer and use it in GitHub Desktop.
Save gspice/54d5db07beef5171301e to your computer and use it in GitHub Desktop.
Remove the Content Archives section from Genesis > Theme Settings.
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