Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to remove Wordpress theme options from child theme
  2. add_action( 'init', 'remove_crap' );
  3.     function remove_crap() {
  4.  
  5.     remove_custom_image_header();
  6.     remove_custom_background();
  7.     remove_theme_support('post-formats');
  8. }
  9.        
  10. add_action('admin_init', 'remove_twentyeleven_theme_options', 11);
  11.      function remove_twentyeleven_theme_options() {
  12.  remove_submenu_page('themes.php', 'theme_options');
  13. }