add_section( 'theme_demo_content', array( 'title' => __('One Click Demo Import', 'enwoo'), 'priority' => 7, ) ); $wp_customize->add_setting( 'demo_content_instruction', array( 'sanitize_callback' => 'wp_kses_post' ) ); /* translators: %s: "documentation" string */ $demo_content_description = sprintf(__('You can import the demo content with just one click. For step-by-step video tutorial, see %1$s', 'enwoo'), '' . esc_html__('documentation', 'enwoo') . ''); $wp_customize->add_control( new enwoo_Info_Text( $wp_customize, 'demo_content_instruction', array( 'section' => 'theme_demo_content', 'description' => $demo_content_description ) ) ); $theme_demo_content_desc = ''; if (is_plugin_active('envo-extra/envo-extra.php')) { $theme_demo_content_desc .= '

' . esc_html__('Import demo data', 'enwoo') . '

'; } else { $theme_demo_content_desc .= '

' . esc_html__('Import demo data', 'enwoo') . '

'; } $wp_customize->add_setting( 'theme_demo_content_info', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); // Demo content $wp_customize->add_control( new enwoo_Info_Text( $wp_customize, 'theme_demo_content_info', array( 'section' => 'theme_demo_content', 'description' => $theme_demo_content_desc ) ) ); } add_action('customize_register', 'enwoo_customizer_demo_content');