get_section( 'title_tagline' )->panel = 'best_news_general_settings_panel'; $wp_customize->get_section( 'title_tagline' )->priority = '5'; $wp_customize->get_section( 'background_image' )->panel = 'best_news_general_settings_panel'; $wp_customize->get_section( 'background_image' )->priority = '15'; /** * Add General Settings Panel * * @since 1.0.0 */ $wp_customize->add_panel( 'best_news_general_settings_panel', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'General Settings', 'best-news' ), ) ); /** * Add Typography Panel * * @since 1.0.0 */ $wp_customize->add_panel( 'best_news_document_panel', array( 'priority' => 2, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'Documents', 'best-news' ), ) ); }