Skip to content

Instantly share code, notes, and snippets.

@pfefferle
Created November 21, 2013 12:40
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 pfefferle/7580905 to your computer and use it in GitHub Desktop.
Save pfefferle/7580905 to your computer and use it in GitHub Desktop.
<?php
function sempress_lite_setup() {
remove_theme_support( 'custom-background' );
remove_action( 'customize_register', 'sempress_customize_register' );
remove_action( 'wp_head', 'sempress_customize_css');
}
/**
* Tell WordPress to run sempress_setup() when the 'after_setup_theme' hook is run.
*/
add_action( 'after_setup_theme', 'sempress_lite_setup', 30 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment