Guest User

Untitled

a guest
Mar 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. // Remove unnecessary sections from the theme customizer
  4. function edit_customizer($wp_customize) {
  5. $wp_customize->remove_section("colors");
  6. $wp_customize->remove_section("custom_css");
  7. // $wp_customize->remove_section("static_front_page");
  8. }
  9.  
  10. add_action( "customize_register", "edit_customizer" );
Add Comment
Please, Sign In to add comment