setComponent( $this ); $action->setHook( 'customize_register' ); $action->setCallback( 'customize_register' ); $action->setAcceptedArgs( 1 ); $action->setMandatory( true ); $this->hooks[] = $action; } public function customize_register($wp_customize){ /** Add Panel */ $wp_customize->add_panel('bingopress_component_panel', array( 'title' => __('Components','bingopress'), 'priority' => 100, )); } }