Jetpack_IDC::get_migrate_site_action_explanation PHP Метод

get_migrate_site_action_explanation() публичный Метод

    function get_migrate_site_action_explanation()
    {
        $html = wp_kses(sprintf(__('Yes. <a href="%1$s">%2$s</a> is replacing <a href="%3$s">%4$s</a>. I would like to
					migrate my stats and subscribers from <a href="%3$s">%4$s</a> to <a href="%1$s">%2$s</a>.', '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 migrate site action.
         *
         * @since 4.4.0
         *
         * @param string $html The HTML to be displayed
         */
        return apply_filters('jetpack_idc_migrate_site_explanation', $html);
    }