Jetpack_IDC::get_first_step_fix_connection_action_explanation PHP Method

get_first_step_fix_connection_action_explanation() public method

    function get_first_step_fix_connection_action_explanation()
    {
        $html = wp_kses(sprintf(__('If this is a separate and new website, or the new home of <a href="%1$s">%2$s</a>, 
					we recommend turning Safe Mode off, and re-establishing your connection to WordPress.com.', 'jetpack'), esc_url(untrailingslashit(self::$wpcom_home_url)), self::prepare_url_for_display(esc_url(self::$wpcom_home_url))), array('a' => array('href' => array())));
        /**
         * Allows overriding of the default text used to explain the fix Jetpack connection action.
         *
         * @since 4.4.0
         *
         * @param string $html The HTML to be displayed
         */
        return apply_filters('jetpack_idc_first_fix_connection_explanation', $html);
    }