Jetpack_IDC::get_second_step_header_lead PHP Method

get_second_step_header_lead() public method

    function get_second_step_header_lead()
    {
        $string = sprintf(esc_html__('Is %1$s the new home of %2$s?', 'jetpack'), untrailingslashit(Jetpack::normalize_url_protocol_agnostic(get_home_url())), untrailingslashit(Jetpack::normalize_url_protocol_agnostic(esc_url_raw(self::$wpcom_home_url))));
        /**
         * Allows overriding of the default header text in the second step of the Safe Mode notice.
         *
         * @since 4.4.0
         *
         * @param string $html The HTML to be displayed
         */
        return apply_filters('jetpack_idc_second_step_header_lead', $string);
    }