Browse Source

Suppress header text colour in customizer (fixes #86)

pull/91/head
Dac Chartrand 8 years ago
parent
commit
f5566a4837
  1. 3
      inc/customizer/namespace.php

3
inc/customizer/namespace.php

@ -16,9 +16,10 @@ use PressbooksMix\Assets;
*/ */
function customize_register( \WP_Customize_Manager $wp_customize ) { function customize_register( \WP_Customize_Manager $wp_customize ) {
// Remove unsupported WP controls // Remove unsupported WP controls, @see \WP_Customize_Manager::register_controls
$wp_customize->remove_control( 'display_header_text' ); $wp_customize->remove_control( 'display_header_text' );
$wp_customize->remove_control( 'header_textcolor' );
// Add Pressbooks controls // Add Pressbooks controls

Loading…
Cancel
Save