register_section_type( 'PPW_Customize_Link_Section' ); $wp_customize->add_section( new PPW_Customize_Link_Section( $wp_customize, 'ppwp_upsell', array( 'ppwp_text' => __( 'More options available in PPWP Pro', 'password-protect-page' ), 'ppwp_url' => esc_url( 'https://passwordprotectwp.com/features/lite-vs-pro-version/?utm_source=user-website&utm_medium=wp-customizer&utm_campaign=ppwp-free#sitewide-customizer' ), 'capability' => 'edit_theme_options', 'priority' => 9999, 'type' => 'ppwp-upsell-section', ) ) ); } public function enqueue() { wp_enqueue_script( 'ppw-upsell-section-scripts', PPW_DIR_URL . 'includes/customizers/assets/ppw-upsell-section.js', array( 'jquery' ), PPW_VERSION, true ); } } }