Jetpack_IDC::get_start_fresh_action_explanation PHP Method

get_start_fresh_action_explanation() public method

    function get_start_fresh_action_explanation()
    {
        $html = wp_kses(sprintf(__('No. <a href="%1$s">%2$s</a> is a new and different website that\'s separate from 
					<a href="%3$s">%4$s</a>. It requires  a new connection to WordPress.com for new stats and subscribers.', 'jetpack'), esc_url(get_home_url()), self::prepare_url_for_display(get_home_url()), esc_url(self::$wpcom_home_url), untrailingslashit(Jetpack::normalize_url_protocol_agnostic(esc_url_raw(self::$wpcom_home_url)))), array('a' => array('href' => array())));
        /**
         * Allows overriding of the default text for explaining the start fresh action.
         *
         * @since 4.4.0
         *
         * @param string $html The HTML to be displayed
         */
        return apply_filters('jetpack_idc_start_fresh_explanation', $html);
    }