summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/module-info.php')
-rw-r--r--plugins/jetpack/modules/module-info.php19
1 files changed, 18 insertions, 1 deletions
diff --git a/plugins/jetpack/modules/module-info.php b/plugins/jetpack/modules/module-info.php
index ece1e050..08daf5c7 100644
--- a/plugins/jetpack/modules/module-info.php
+++ b/plugins/jetpack/modules/module-info.php
@@ -102,7 +102,7 @@ add_filter( 'jetpack_learn_more_button_publicize', 'publicize_load_more_link' );
function publicize_more_info() { ?>
<?php esc_html_e(
- 'Automatically share and promote newly published posts to Facebook, Twitter, Tumblr, Google+, Path,
+ 'Automatically share and promote newly published posts to Facebook, Twitter, Tumblr, Google+,
and LinkedIn. You can add connections for yourself or for all users on your site.'
, 'jetpack' );
}
@@ -682,3 +682,20 @@ function jetpack_woocommerce_analytics_more_info() {
, 'jetpack' );
}
add_action( 'jetpack_module_more_info_woocommerce-analytics', 'jetpack_woocommerce_analytics_more_info' );
+
+/**
+ * Assets CDN
+ */
+function jetpack_assetcdn_more_link() {
+ echo 'https://jetpack.com/support/asset-cdn/';
+}
+add_action( 'jetpack_learn_more_button_photon-cdn', 'jetpack_assetcdn_more_link' );
+
+function jetpack_assetcdn_more_info() {
+ esc_html_e(
+ 'Our asset CDN is a site acceleration service.
+ That means that we host static assets like JavaScript and CSS shipped with WordPress Core and Jetpack from our servers, alleviating the load on your server.',
+ 'jetpack'
+ );
+}
+add_action( 'jetpack_module_more_info_photon-cdn', 'jetpack_assetcdn_more_info' );