CINXE.COM

What Data Does Jetpack Sync?

<!DOCTYPE html> <!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8" lang="en"> <![endif]--> <!--[if IE 8]><html class="no-js lt-ie10 lt-ie9" lang="en"> <![endif]--> <!--[if IE 9]><html class="no-js lt-ie10" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]--> <head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://jetpack.com/support/what-data-does-jetpack-sync/","20190828152918","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1567006158"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title> What Data Does Jetpack&nbsp;Sync? </title> <meta name="description" content="Essential Security &amp; Performance for WordPress"> <meta name="author" content="WordPress.com / Automattic Inc."> <meta name="viewport" content="width=device-width"> <meta name="google-site-verification" content="gprBhnJ5dQ2j8I3RU2MexFOZp5a6Ty3tLmUpKk4cbPg"/> <!-- Async WordPress.com Remote Login --> <script id="wpcom_remote_login_js"> var wpcom_remote_login_extra_auth = ''; function wpcom_remote_login_remove_dom_node_id( element_id ) { var dom_node = document.getElementById( element_id ); if ( dom_node ) { dom_node.remove(); } } function wpcom_remote_login_remove_dom_node_classes( class_name ) { var dom_nodes = document.querySelectorAll( '.' + class_name ); for ( var i = 0; i < dom_nodes.length; i++ ) { dom_nodes[i].remove(); } } function wpcom_remote_login_final_cleanup() { wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" ); } // Watch for messages back from the remote login window.addEventListener( "message", function( e ) { if ( e.origin === "https://web.archive.org/web/20190828152918/https://r-login.wordpress.com" ) { var data = {}; try { data = JSON.parse( e.data ); } catch( e ) { wpcom_remote_login_final_cleanup(); return; } if ( data.msg === 'LOGIN' ) { // Clean up the login check iframe wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); var id_regex = new RegExp( /^[0-9]+$/ ); var token_regex = new RegExp( /^.*|.*|.*$/ ); if ( token_regex.test( data.token ) && id_regex.test( data.wpcomid ) ) { // We have everything we need to ask for a login var script = document.createElement( "script" ); script.setAttribute( "id", "wpcom_remote_login_validate" ); script.src = '/remote-login.php?wpcom_remote_login=validate' + '&wpcomid=' + data.wpcomid + '&token=' + encodeURIComponent( data.token ) + '&host=' + window.location.protocol + '//' + window.location.hostname; document.body.appendChild( script ); } return; } // Safari ITP, not logged in, so redirect if ( data.msg === 'LOGIN-REDIRECT' ) { window.location = 'https://web.archive.org/web/20190828152918/https://wordpress.com/log-in?redirect_to=' + window.location.href; return; } // Safari ITP, storage access failed, remove the request if ( data.msg === 'LOGIN-REMOVE' ) { var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }'; var style_zap = document.createElement( 'style' ); style_zap.type = 'text/css'; style_zap.appendChild( document.createTextNode( css_zap ) ); document.body.appendChild( style_zap ); var e = document.getElementById( 'wpcom_request_access_iframe' ); e.parentNode.removeChild( e ); document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000'; return; } // Safari ITP if ( data.msg === 'REQUEST_ACCESS' ) { console.log( 'request access: safari' ); // Check ITP iframe enable/disable knob if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) { return; } // If we are in a "private window" there is no ITP. var private_window = false; try { var opendb = window.openDatabase( null, null, null, null ); } catch( e ) { private_window = true; } if ( private_window ) { console.log( 'private window' ); return; } var iframe = document.createElement( 'iframe' ); iframe.id = 'wpcom_request_access_iframe'; iframe.setAttribute( 'scrolling', 'no' ); iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' ); iframe.src = 'https://web.archive.org/web/20190828152918/https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid ); var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } '; var style = document.createElement( 'style' ); style.type = 'text/css'; style.id = 'wpcom_request_access_styles'; style.appendChild( document.createTextNode( css ) ); document.body.appendChild( style ); document.body.appendChild( iframe ); } if ( data.msg === 'DONE' ) { wpcom_remote_login_final_cleanup(); } } }, false ); // Inject the remote login iframe after the page has had a chance to load // more critical resources window.addEventListener( "DOMContentLoaded", function( e ) { var iframe = document.createElement( "iframe" ); iframe.style.display = "none"; iframe.setAttribute( "scrolling", "no" ); iframe.setAttribute( "id", "wpcom_remote_login_key" ); iframe.src = "https://web.archive.org/web/20190828152918/https://r-login.wordpress.com/remote-login.php" + "?wpcom_remote_login=key" + "&origin=aHR0cHM6Ly9qZXRwYWNrLmNvbQ%3D%3D" + "&wpcomid=20115252" + "&time=1567006158"; document.body.appendChild( iframe ); }, false ); </script> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://s2.wp.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://jetpackme.wordpress.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://s1.wp.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://s0.wp.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://wordpress.com/"/> <link rel="dns-prefetch" href="//web.archive.org/web/20190828152918/https://fonts.googleapis.com/"/> <link rel="alternate" type="application/rss+xml" title="Jetpack — Essential Security &amp; Performance for WordPress » Feed" href="https://web.archive.org/web/20190828152918/https://jetpack.com/feed/"/> <link rel="alternate" type="application/rss+xml" title="Jetpack — Essential Security &amp; Performance for WordPress » Comments Feed" href="https://web.archive.org/web/20190828152918/https://jetpack.com/comments/feed/"/> <script type="text/javascript"> /* <![CDATA[ */ function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function () { oldonload(); func(); } } } /* ]]> */ </script> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/s2.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1556893897h&ver=5.2.3-RC1-45884"}}; !function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel="stylesheet" id="all-css-0-1" href="https://web.archive.org/web/20190828152918cs_/https://s2.wp.com/_static/??-eJyNktFugzAMRX9oicvUsb5M+5YAHk1JIIqNaP9+JoFNa7doL8g2Ptc3TmAJqp1GxpHBzyq4ubcjwRLaySvy1uHtLtMt0RP8jkV0hrFTYSK+y0qYswMSXJCDaQeVsof2vbefJW0w9vInItT6WR+gma3roHFTwpto4g2Ibw7/IZMoArbjgHHPsmBZop225kpXq4nOEmcPpDOZVP7kP2bnFFlGhZ2V8f22DzjoWleQtianIc6msv59tbTWdUFS98Hw2uFljEGHXtpK2GK7HuX6pGWLFeO1iPhQ74PW8GzWHZRGpAfVNCEikZKvt7NXfBZvRU6o1X1+Isngj0pGLYwTW6HpK3jQzKPAnNr92XlUIy7fV/7u36qXuj6+VqdjffkEreAtRw==?cssminify=yes" type="text/css" media="all"/> <link rel="stylesheet" id="jetpackme-fonts-css" href="https://web.archive.org/web/20190828152918cs_/https://fonts.googleapis.com/css?family=Open+Sans%3A400italic%2C400%2C700%2C600%2C800&amp;ver=2.0" type="text/css" media="all"/> <link rel="stylesheet" id="all-css-2-1" href="https://web.archive.org/web/20190828152918cs_/https://s0.wp.com/_static/??-eJx9kNEOgjAMRX/IWUmAhAfjt4xRR03ZyDpC/HuHZKIh8nba3nvbDeZRGe8iugjDpEaeLDkBiw4DpcEfPBuREyQvOcNThwKpAZ2Wfh0P5D6SHM/UAnujGZWdUASDkpmi6TFABjVTZzFmXW7vsr5OXR0C0Y9q9JJI4pPxyGLRq2VDJO9+CnVnTYfbArbsbUL7fvFWHpm0WcJbHTbayWOPQ/rGvgTLvtW8CG7DtajqS1k3RVM9XkTuoIo=?cssminify=yes" type="text/css" media="all"/> <script type="text/javascript"> /* <![CDATA[ */ var related_posts_js_options = {"post_heading":"h4"}; /* ]]> */ </script> <script type="text/javascript" src="https://web.archive.org/web/20190828152918js_/https://s0.wp.com/_static/??-eJylkOFOxCAQhF9IjphLL/fH+CwcnWu3wlLZpahPL02uP6wXjTEhgYVvZ5mxdTbEPpQeYqe2Xgvy+207TPJgfwJMpCE7xSESb7BPrGBd2TmJRoi4AXdeY7pQgCmC3ADWNuaa9lwsZg5lIBabEdqo3qyqu+qO+lcjxAuh/opN0Nn5F5Mh9PHtzzqiubHu7O0NjDCMuuos4D5lO2oMnYy0/KX3Cqclo/nv8bZvDHSxIXnXkhpKyxLZSCX1I7LdDqZSP0A3brv+j5Rmx9ISpsRrus/x6bHrzsfudOqO0yc1b9Ru"></script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://jetpackme.wordpress.com/xmlrpc.php?rsd"/> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s1.wp.com/wp-includes/wlwmanifest.xml"/> <meta name="generator" content="WordPress.com"/> <link rel="shortlink" href="https://web.archive.org/web/20190828152918/https://wp.me/p1moTy-3l8"/> <style> @font-face { font-family: Recoleta; src: url('https://web.archive.org/web/20190828152918im_/https://s1.wp.com/i/fonts/recoleta/400.woff2') } </style> <link rel="alternate" type="application/json+oembed" href="https://web.archive.org/web/20190828152918/https://public-api.wordpress.com/oembed/?format=json&amp;url=https%3A%2F%2Fjetpack.com%2Fsupport%2Fwhat-data-does-jetpack-sync%2F&amp;for=wpcom-auto-discovery"/><link rel="alternate" type="application/xml+oembed" href="https://web.archive.org/web/20190828152918/https://public-api.wordpress.com/oembed/?format=xml&amp;url=https%3A%2F%2Fjetpack.com%2Fsupport%2Fwhat-data-does-jetpack-sync%2F&amp;for=wpcom-auto-discovery"/> <!-- Jetpack Open Graph Tags --> <meta property="og:type" content="article"/> <meta property="og:title" content="What Data Does Jetpack Sync? "/> <meta property="og:url" content="https://web.archive.org/web/20190828152918/https://jetpack.com/support/what-data-does-jetpack-sync/"/> <meta property="og:description" content="As part of the required connection to WordPress.com, Jetpack caches your site’s data to WordPress.com servers (which power all of Jetpack’s functionality). To take advantage of the valu…"/> <meta property="article:published_time" content="2016-08-10T14:14:16+00:00"/> <meta property="article:modified_time" content="2019-07-03T11:14:30+00:00"/> <meta property="og:site_name" content="Jetpack — Essential Security &amp; Performance for WordPress"/> <meta property="og:image" content="https://web.archive.org/web/20190828152918im_/https://i2.wp.com/s2.wp.com/wp-content/themes/a8c/jetpackme-new/images-2015/default-image.jpg?ssl=1"/> <meta property="og:locale" content="en_US"/> <meta name="twitter:site" content="@jetpack"/> <meta name="twitter:text:title" content="What Data Does Jetpack Sync?"/> <meta name="twitter:image" content="https://web.archive.org/web/20190828152918im_/https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=240"/> <meta name="twitter:card" content="summary"/> <meta property="article:publisher" content="https://www.facebook.com/WordPresscom"/> <meta name="twitter:app:name:iphone" content="WordPress"/> <meta name="twitter:app:id:iphone" content="335703880"/> <meta name="twitter:app:name:ipad" content="WordPress"/> <meta name="twitter:app:id:ipad" content="335703880"/> <meta name="twitter:app:name:googleplay" content="WordPress"/> <meta name="twitter:app:id:googleplay" content="org.wordpress.android"/> <!-- End Jetpack Open Graph Tags --> <link rel="openid.server" href="https://jetpack.com/?openidserver=1"/> <link rel="openid.delegate" href="https://jetpack.com/"/> <link rel="search" type="application/opensearchdescription+xml" href="https://web.archive.org/web/20190828152918/https://jetpack.com/osd.xml" title="Jetpack — Essential Security &amp; Performance for WordPress"/> <link rel="search" type="application/opensearchdescription+xml" href="https://web.archive.org/web/20190828152918/https://s1.wp.com/opensearch.xml" title="WordPress.com"/> <!-- Linguine hreflang Block --> <link rel="alternate" hreflang="es" href="https://web.archive.org/web/20190828152918/http://es.jetpack.com/?post_type=jetpack_support&amp;p=3158"/> <link rel="alternate" hreflang="pt-br" href="https://web.archive.org/web/20190828152918/http://br.jetpack.com/?post_type=jetpack_support&amp;p=3633"/> <link rel="alternate" hreflang="x-default" href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/what-data-does-jetpack-sync/"/> <script type="text/javascript" id="webfont-output"> WebFontConfig = {"typekit":{"id":"kdm2zue"}}; (function() { var wf = document.createElement('script'); wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; wf.type = 'text/javascript'; wf.async = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s); })(); </script><link rel="canonical" href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/what-data-does-jetpack-sync/"/> <style type="text/css"> .recentcomments a { display: inline !important; padding: 0 !important; margin: 0 !important; } table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar { border: 0px; margin: 0; } table.recentcommentsavatartop a, table.recentcommentsavatarend a { border: 0px !important; background-color: transparent !important; } td.recentcommentsavatarend, td.recentcommentsavatartop { padding: 0px 0px 1px 0px; margin: 0px; } td.recentcommentstextend { border: none !important; padding: 0px 0px 2px 10px; } .rtl td.recentcommentstextend { padding: 0px 10px 2px 0px; } td.recentcommentstexttop { border: none; padding: 0px 0px 0px 10px; } .rtl td.recentcommentstexttop { padding: 0px 10px 0px 0px; } </style> <meta name="application-name" content="Jetpack — Essential Security &amp; Performance for WordPress"/><meta name="msapplication-window" content="width=device-width;height=device-height"/><meta name="msapplication-tooltip" content="Essential Security &amp; Performance for WordPress"/><meta name="msapplication-task" content="name=Subscribe;action-uri=https://jetpack.com/feed/;icon-uri=https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=16"/><meta name="msapplication-task" content="name=Sign up for a free blog;action-uri=http://wordpress.com/signup/;icon-uri=https://s1.wp.com/i/favicon.ico"/><meta name="msapplication-task" content="name=WordPress.com Support;action-uri=http://support.wordpress.com/;icon-uri=https://s1.wp.com/i/favicon.ico"/><meta name="msapplication-task" content="name=WordPress.com Forums;action-uri=http://forums.wordpress.com/;icon-uri=https://s1.wp.com/i/favicon.ico"/><meta name="description" content="As part of the required connection to WordPress.com, Jetpack caches your site's data to WordPress.com servers (which power all of Jetpack's functionality). To take advantage of the valuable features of Jetpack, certain information about the content, settings, and configuration of your site must be synced with our servers. This data begins to sync when Jetpack is…"/> <link rel="icon" href="https://web.archive.org/web/20190828152918im_/https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=32" sizes="32x32"/> <link rel="icon" href="https://web.archive.org/web/20190828152918im_/https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=192" sizes="192x192"/> <link rel="apple-touch-icon-precomposed" href="https://web.archive.org/web/20190828152918im_/https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=180"/> <meta name="msapplication-TileImage" content="https://jetpackme.files.wordpress.com/2018/04/cropped-jetpack-favicon-2018.png?w=270"/> <link rel="stylesheet" id="custom-css-css" type="text/css" href="https://web.archive.org/web/20190828152918cs_/https://s2.wp.com/?custom-css=1&amp;csblog=1moTy&amp;cscache=6&amp;csrev=214"/> </head> <body class="jetpack_support-template-default single single-jetpack_support postid-12842 mp6 customizer-styles-applied highlander-enabled highlander-light"> <header class="mast"> <div class="sticky-nav"> <div class="in"> <nav role="navigation"> <a href="/web/20190828152918/https://jetpack.com/" title="Jetpack" class="logo"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 385.9 104.8"> <path class="jetpack-emblem" d="M52.4 0C23.5 0 0 23.5 0 52.4c0 28.9 23.5 52.4 52.4 52.4 28.9 0 52.4-23.5 52.4-52.4C104.8 23.5 81.3 0 52.4 0zM49.7 61.1H23.6l26.1-50.8V61.1zM55 94.4V43.6h26.1L55 94.4z"/><path d="M135.3 87c-1.5-2.3-2.9-4.6-4.3-6.8 7.4-4.5 9.9-8.1 9.9-14.9V26h-8.7v-7.5h18.5v44.8C150.7 74.7 147.4 81.1 135.3 87z"/><path d="M212.8 60.2c0 3.8 2.7 4.2 4.5 4.2s4.4-0.6 6.4-1.2v7c-2.8 0.9-5.7 1.6-9.7 1.6 -4.8 0-10.4-1.8-10.4-10.2V41h-5.1v-7.1h5.1V23.4h9.2v10.5h11.6V41h-11.6V60.2z"/><path d="M232 90.5V33.8h8.8v3.4c3.5-2.7 7.4-4.4 12.2-4.4 8.3 0 14.9 5.8 14.9 18.3 0 12.4-7.2 20.6-19.1 20.6 -2.9 0-5.2-0.4-7.6-0.9v19.6H232zM250.6 40.4c-2.7 0-6.1 1.3-9.3 4.1v19.3c2 0.4 4.1 0.7 6.9 0.7 6.5 0 10.2-4.1 10.2-12.7C258.4 43.9 255.7 40.4 250.6 40.4z"/><path d="M304.1 70.9h-8.6v-4.1h-0.2c-3 2.3-6.7 4.8-12.2 4.8 -4.8 0-10-3.5-10-10.6 0-9.5 8.1-11.3 13.8-12.1l8.1-1.1v-1.1c0-5-2-6.6-6.7-6.6 -2.3 0-7.7 0.7-12.1 2.5l-0.8-7.4c4-1.4 9.5-2.4 14.1-2.4 9 0 14.8 3.6 14.8 14.3V70.9zM294.9 53.6l-7.6 1.2c-2.3 0.3-4.7 1.7-4.7 5.1 0 3 1.7 4.7 4.2 4.7 2.7 0 5.6-1.6 8.1-3.4V53.6z"/><path d="M342.1 69.7c-3.8 1.3-7.2 2.1-11.5 2.1 -13.8 0-19.3-7.9-19.3-19.4 0-12.1 7.6-19.6 19.9-19.6 4.6 0 7.4 0.8 10.5 1.8v7.8c-2.7-1-6.6-2.1-10.4-2.1 -5.6 0-10.4 3-10.4 11.6 0 9.5 4.8 12.4 10.9 12.4 2.9 0 6.1-0.6 10.4-2.3V69.7z"/><path d="M359.5 49.8c0.8-0.9 1.4-1.8 13-15.9h12l-15 17.6 16.4 19.5h-12l-14.3-17.6v17.6h-9.2V18.5h9.2V49.8z"/><path d="M191.6 69.7c-4.8 1.5-8.9 2.1-13.7 2.1 -11.8 0-19.1-5.9-19.1-19.7 0-10.1 6.2-19.3 18.1-19.3 11.8 0 15.9 8.2 15.9 16 0 2.6-0.2 4-0.3 5.5h-23.8c0.2 8.1 4.8 10 11.7 10 3.8 0 7.2-0.9 11.1-2.3V69.7zM183.2 48.2c0-4.5-1.5-8.4-6.4-8.4 -4.6 0-7.4 3.3-8 8.4H183.2z"/> </svg> </a> <div class="nav-container"> <button id="mobilenav-toggle" class="mobilenav mobilenav-animate" type="button" aria-label="Menu" aria-controls="navigation"> <span class="mobilenav-box"> <span class="mobilenav-inner"></span> </span> <span class="mobilenav-label">Menu</span> </button> <ul class="pri-nav "> <li><a id="masthead-features" href="/web/20190828152918/https://jetpack.com/features/">Product Tour</a></li> <li><a id="masthead-pricing" href="/web/20190828152918/https://jetpack.com/pricing/">Pricing</a></li> <li><a id="masthead-support" href="/web/20190828152918/https://jetpack.com/support/" class="current">Support</a></li> <li><a id="masthead-blog" href="/web/20190828152918/https://jetpack.com/blog/">Blog</a></li> <li class="install"><a id="masthead-install-page-12842" href="https://web.archive.org/web/20190828152918/https://jetpack.com/install/">Get started</a></li> <li class="lang-select"> <a href="#" class="wp-button language-toggle"> <span>en</span> <svg class="gridicon gridicons-chevron-down" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"></path></g></svg> </a> </li> </ul> <script> // toggles is-active class on click of mobilenav-toggle id. ( function(){ var mobilenav = document.getElementById( 'mobilenav-toggle' ); mobilenav.addEventListener( 'click', function() { var classNameArray = this.className.split(" "); var isActiveIndex = classNameArray.indexOf( 'is-active' ); if ( isActiveIndex >= 0) { delete classNameArray.splice( isActiveIndex, 1); } else { classNameArray.push( 'is-active' ); } this.className = classNameArray.join( ' ' ); }, false ); })(); </script> </div> </nav> </div> </div> <div class="in revolving-headers"> </div> <script> jQuery( "#masthead-install-cta" ).click(function() { _tkq.push(['recordEvent', 'jetpack_main_nav_cta_install_click',[]]); }); </script> </header> <div class="in j-content"> <div class="l-side"> <div class="jetpack-support-breadcrumbs"> <a href="/web/20190828152918/https://jetpack.com/support">Support Home</a> <span>&gt;</span> <a href="//web.archive.org/web/20190828152918/https://jetpack.com/support/privacy">Privacy</a> <span>&gt;</span> What Data Does Jetpack Sync? </div> <div id="post-12842" class="post-12842 jetpack_support type-jetpack_support status-publish hentry jetpack_support_category-privacy jetpack_support_tag-data jetpack_support_tag-data-sync jetpack_support_tag-gdpr jetpack_support_tag-i18n-tier5 jetpack_support_tag-privacy jetpack_support_tag-sync"> <h1 class="entry-title">What Data Does Jetpack&nbsp;Sync?</h1> <div class="entry-content"> <p>As part of the required connection to WordPress.com, Jetpack caches your site&#8217;s data to WordPress.com servers (which power all of Jetpack&#8217;s functionality).</p> <p>To take advantage of the valuable features of Jetpack, certain information about the content, settings, and configuration of your site must be synced with our servers. This data begins to sync when Jetpack is <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/getting-started-with-jetpack/#install-jetpack">installed and connected</a> to <a href="https://web.archive.org/web/20190828152918/https://wordpress.com/">WordPress.com</a>. It is important to note that Jetpack syncs all the data required by all of its modules, whether they are activated or not, to Automattic’s servers.</p> <p>We handle synced data under the terms of <a href="https://web.archive.org/web/20190828152918/https://automattic.com/privacy/">our Privacy Policy</a>.</p> <h3 id="content-and-settings">Content and Settings</h3> <p>In order to display accurate information about your site in places such as <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/subscriptions/">notification emails</a> and the <a href="https://web.archive.org/web/20190828152918/https://wordpress.com/read">WordPress.com Reader</a>, Jetpack syncs the following information:</p> <ul> <li>Site name.</li> <li>Site tagline.</li> <li>Site timezone.</li> <li>Site locale.</li> <li>Permalink structure.</li> </ul> <p>In order to allow the creation and management of content from different locations and devices (e.g. from the WordPress.com <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/desktop/">desktop</a> or <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/mobile/">mobile</a> apps), information about the following is also synced:</p> <ul> <li>Posts, including WordPress.com user ID of author.</li> <li>Pages, including WordPress.com user ID of author.</li> <li>Custom post types.</li> <li>Any related metadata, including: <ul> <li>Whether or not the post is public.</li> <li>Whether or note the post is excluded from search.</li> <li>The permalink of the post.</li> <li>The excerpt of the post, if available.</li> <li>The <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/wp-me-shortlinks/">WP.me shortlink</a> of the post, if available.</li> <li>External ID (specific to the site in question) of the post author.</li> <li>The featured image of the post, if available.</li> </ul> </li> </ul> <p>This index of your content helps to reduce the load on your site’s servers and also allows <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/related-posts/">related content</a> and <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/search/">an optimized search index</a> to be generated and displayed where appropriate.</p> <h3 id="user-related-data">User-Related Data</h3> <p>Jetpack syncs miscellaneous bits of user information, such as:</p> <ul> <li>The user IDs, usernames, email addresses, roles, and capabilities of registered users. <strong>This does not include passwords.</strong></li> <li>The user ID of any users that make changes to the site and the time that changes are made (e.g. ID of the user that added a new user, modified the site icon, or trashed a comment).</li> <li>Twitter username, if configured with Jetpack.</li> <li>Publicize connection data, which includes email addresses and usernames associated with connected services.</li> <li>For <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/ads/">WordAds</a> customers, we also sync the account&#8217;s email address and physical address. Review the complete terms of service for the program <a href="https://web.archive.org/web/20190828152918/https://wordpress.com/automattic-ads-tos/">here</a>.</li> <li>Successful and failed login attempts (this includes the IP address and user agent of the individual performing the login action).</li> </ul> <p>This user-related data is utilized by Jetpack in a variety of ways, including:</p> <ul> <li><a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/security-features/">Preventing unauthorized access.</a></li> <li>Providing audit logs (coming soon!).</li> <li>Managing subscribers and followers.</li> <li>Seamless integration with third-party social media services.</li> </ul> <h3 id="themes-and-plugins">Themes and Plugins</h3> <p>The following information related to themes and plugins is synced:</p> <ul> <li>The name of any themes or plugins currently in use.</li> <li>The version and capabilities (e.g. featured image, menu locations, and pending updates).</li> <li>Plugin installation path.</li> </ul> <p>This enables Jetpack to provide services such as:</p> <ul> <li><a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/site-management/">Remote plugin installation and management via WordPress.com.</a></li> <li>Automatic plugin updates.</li> <li>Automatic theme updates (coming soon!).</li> <li>Theme installation.</li> <li>Theme customization from WordPress.com (including via the <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/desktop/">desktop</a> or <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/mobile/">mobile</a> apps).</li> <li><a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/wordpress-com-stats/">Aggregated statistics and insights</a>.</li> </ul> <h3 id="additional-data">Additional Data</h3> <p>We also sync the following data to further enable and improve the functionality of Jetpack:</p> <ul> <li>Comments and their associated metadata, including: <ul> <li>Comment author name.</li> <li>Comment author email address.</li> <li>Comment author URL.</li> <li>Comment author IP address.</li> <li>Comment author Wordress.com user ID, if known.</li> <li>Comment author external (specific to the site in question) user ID, if known.</li> </ul> </li> <li>Taxonomies (including categories and tags).</li> <li>Custom taxonomies (if used on the site).</li> <li><a href="https://web.archive.org/web/20190828152918/https://codex.wordpress.org/WordPress_Menu_User_Guide">Menus</a>.</li> <li><a href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/master/sync/class.jetpack-sync-defaults.php#L9">All whitelisted options</a>, constants, and function outputs (e.g. whether the site is a multi-site install).</li> <li>All core WordPress and Jetpack options.</li> <li>Some <a class="cf_div_theme_dark clutterFree_existingDuplicate clutterFree_noIcon" href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/master/sync/class.jetpack-sync-module-woocommerce.php">WooCommerce options</a> and data.</li> </ul> <p>Syncing these pieces of information enables a number of features, including comment spam defense (if using <a href="https://web.archive.org/web/20190828152918/https://akismet.com/">Akismet</a>), displaying <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/notifications/">notifications</a>, including categorized content in the WordPress.com Reader, as well as adding the ability to edit your menus and post data directly from WordPress.com (including through the <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/desktop/">desktop</a> and <a href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/mobile/">mobile</a> apps).</p> <h3 id="data-synced-by-feature">Data Synced by Feature</h3> <p>To explore the type of data synced by individual Jetpack features, you can click on any of the following links to review more in-depth privacy information. Note that some features are automatically activated; you can find deactivation instructions at the following links, as well.</p> <table class="feature-privacy"> <tr> <th style="height: 30px;">Feature</th> <th style="height: 30px;">Auto-activated?</th> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/activity-log/#privacy">Activity</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/ads/#privacy">Ads</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/beautiful-math-with-latex/#privacy">Beautiful Math with&nbsp;LaTeX</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/carousel/#privacy">Carousel</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/comment-likes/#privacy">Comment Likes</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/contact-form/#privacy">Contact Form (Classic&nbsp;Editor)</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/custom-content-types/#privacy">Custom Content Types</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/custom-css/#privacy">Custom CSS</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/monitor/#privacy">Downtime Monitoring</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/enhanced-distribution/#privacy">Enhanced Distribution</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/extra-sidebar-widgets/#privacy">Extra Sidebar Widgets</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/google-analytics/#privacy">Google Analytics</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/gravatar-hovercards/#privacy">Gravatar Hovercards</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/infinite-scroll/#privacy">Infinite Scroll</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/backups/#privacy">Jetpack Backups</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/comments/#privacy">Jetpack Comments</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/lazy-images/#privacy">Lazy Images</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/likes/#privacy">Likes</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/markdown/#privacy">Markdown</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/mobile-theme/#privacy">Mobile Theme</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/notifications/#privacy">Notifications</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/post-by-email/#privacy">Post by Email</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/spelling-and-grammar/#privacy">Proofreading</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/publicize/#privacy">Publicize</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/related-posts/#privacy">Related Posts</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/search/#privacy">Search</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/security/#privacy">Security</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/security-features/#privacy">Security Features</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/security-scanning/#privacy">Security Scanning</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/seo-tools/#privacy">SEO Tools</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/sharing/#privacy">Sharing</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/shortcode-embeds/#privacy">Shortcode Embeds</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/simple-payment-button/#privacy">Simple Payment Button</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/site-accelerator/#privacy">Site Accelerator (formerly&nbsp;photon)</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/site-management/#privacy">Site Management</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/site-verification-tools/#privacy">Site Verification Tools</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/sitemaps/#privacy">Sitemaps</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/subscriptions/#privacy">Subscriptions</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/tiled-galleries/#privacy">Tiled Galleries</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/jetpack-blocks/tiled-gallery-block/#privacy">Tiled Gallery Block</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/video-hosting/#privacy">Video Hosting</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/widget-visibility/#privacy">Widget Visibility</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/sso/#privacy">WordPress.com Secure Sign&nbsp;On</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/wordpress-com-stats/#privacy">WordPress.com Stats</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/masterbar/#privacy">WordPress.com Toolbar</a> </td> <td align="middle" style="text-align: center; height: 30px;"> </td> </tr><tr> <td align="middle" style="text-align: left; height: 30px;"> <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/wp-me-shortlinks/#privacy">WP.me Shortlinks</a> </td> <td align="middle" style="text-align: center; height: 30px;"> <svg class="gridicon " xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><title>Checkmark Circle</title><rect x="0" fill="none" width="24" height="24"/><g><path d="M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"/></g></svg> </td> </tr></table> <p>Have any questions about a specific feature&#8217;s privacy or sync-related documentation? <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/contact-support/">Get in touch</a>.</p> <h3 id="woocommerce-services">WooCommerce Services</h3> <p><a href="https://web.archive.org/web/20190828152918/https://wordpress.org/plugins/woocommerce-services/">WooCommerce Services</a> use Automattic’s servers and a connection to our partners in order to enable useful features for your store. Some of these features (such as those relating to tax calculations and shipping) require data from your site to work.</p> <h4>Payments</h4> <p>If you choose to accept payments with <a href="https://web.archive.org/web/20190828152918/https://stripe.com/">Stripe</a> or <a href="https://web.archive.org/web/20190828152918/https://www.paypal.com/">PayPal</a>, we may share the email address you provide us with whichever service you’ve chosen in order to determine whether or not there’s an existing account and, if one doesn’t exist, automatically create one. Please note that if you use Stripe, they provide us with access to your payments data and account activity. <strong>We do not store this data.</strong></p> <p>When processing payments, some of your — and your customers’ — data will be passed to the respective third party, including information required to process or support the payment, such as the purchase total and your customer’s billing information.</p> <p>Please see the respective third party’s privacy policy (<a href="https://web.archive.org/web/20190828152918/https://stripe.com/privacy/">Stripe’s Privacy Policy</a> and <a href="https://web.archive.org/web/20190828152918/https://stripe.com/privacy/">PayPal’s Privacy Policy</a>) for more details.</p> <h4>Tax Calculations</h4> <p>Tax Calculations are provided by <a href="https://web.archive.org/web/20190828152918/https://www.taxjar.com/">TaxJar</a>. If you use the tax calculations feature, TaxJar receives information related to your customer’s purchase, including the value of goods in your customer’s cart, the value of shipping, your address, and the destination address. All data that flows between your site and Automattic, and between Automattic and TaxJar, is encrypted, end to end, via HTTPS. Please see TaxJar&#8217;s <a href="https://web.archive.org/web/20190828152918/https://www.taxjar.com/privacy-policy/">Privacy Policy</a> for details about how they handle this information.</p> <h4>Shipping Rates and Labels</h4> <p>To take advantage of the real-time shipping rates and shipping label features of WooCommerce Services, certain information about you and your customer (as it relates to shipping), shopping carts, orders, and the configuration of your site are passed to our partners, <a href="https://web.archive.org/web/20190828152918/https://www.easypost.com/">EasyPost</a>, and the respective mailing service, such as <a href="https://web.archive.org/web/20190828152918/https://www.usps.com/">USPS</a> or <a href="https://web.archive.org/web/20190828152918/https://www.canadapost.ca/">Canada Post</a>, via Automattic’s servers. In terms of data handling, we validate <strong>(but do not store)</strong> data you send to us and then pass that data onto our partners. Our partners process the data under the terms of their agreements with Automattic and their own privacy policies. All data that flows between your site and Automattic, and between Automattic and our partners, is encrypted, end to end, via HTTPS.</p> <p>In order to display real-time USPS and Canada Post shipping rates, WooCommerce Services sends information related to a shipment from your site to our servers, including:</p> <ul> <li>Shipping zone settings for validation, when you (the merchant) make changes and when fetching the rates for the customer, including origin postcode, list of enabled delivery services, and list of custom packages you add to the packaging manager.</li> <li>Purchased products’ dimensions, weight, product IDs, and quantity.</li> <li>Package destination address (street, postcode, city, country, state).</li> </ul> <p>Additionally, once each day, WooCommerce Services asks our servers for any updates to the settings for each shipping service. This allows us to add new services and shipping options without you having to explicitly update. We store certain portions of this data (such as user ID, site ID, store location, currency, package/product dimensions, and software versions). This data is <strong>not</strong> shared with our partners.</p> <p>To provide USPS shipping labels, WooCommerce Services sends shipping information from your site to our servers, including:</p> <ul> <li>Merchant and customer names, addresses, and phone numbers.</li> <li>Label packaging settings (dimensions and weight of the packages).</li> <li>Your selected WordPress.com payment method.</li> </ul> <p>To purchase shipping labels, you are required to have a payment method (credit card) saved on file with WordPress.com. We keep a copy of each shipping label on our servers, and our partners also keep a copy of shipping labels on their servers. This makes it easier for you to reprint labels and receive help with any support requests.</p> <h4>Orders</h4> <p>We sync any data related to your site&#8217;s orders, <strong>with the following exceptions</strong>:</p> <ul> <li>Purchaser&#8217;s billing and shipping street address.</li> <li>Purchasing billing and shipping company&#8217;s name.</li> <li>Purchaser&#8217;s email address.</li> <li>Purchaser&#8217;s phone number.</li> <li>Transaction ID.</li> <li>Purchaser&#8217;s IP address.</li> <li>Purchaser&#8217;s user agent.</li> </ul> <h4>Usage Data Collection</h4> <p>To help improve WooCommerce Services, our server automatically logs each request from your site. Each request is tagged with a unique ID that your site randomly generates when WooCommerce Services is activated for the first time. This unique ID is an anonymous identifier that is <strong>not</strong> mapped back to you. To protect the anonymity of you and your customers, we strip merchant and customer identifying details (the merchant name, street address, phone number, and customer name, street address, and phone number) from each request before it’s logged.</p> <h4>Additional Data</h4> <p>We also sync the following data with each request:</p> <ul> <li>Shipping zone settings, used for validation.</li> <li>Fetching payment methods, as configured on WordPress.com.</li> </ul> <p>Syncing this data enables a number of useful features, including showing appropriate shipping methods and making sure we return correctly translated text and units of measurement for your store.</p> <p>We also collect information about what happens when you use our services (e.g., page views, button clicks, etc.) along with information that web browsers, mobile devices, and servers typically make available, such as the browser type and operating system. We use this information to, for example, provide our services to you, as well as gain insights on how people use our services and how we can improve those services.</p> <p>Please refer to our <a class="cf_div_theme_dark clutterFree_existingDuplicate clutterFree_noIcon" href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/master/sync/class.jetpack-sync-module-woocommerce.php">public code repository</a> for all WooCommerce-related data points synced via Jetpack.</p> <h3 id="more-information">More Information</h3> <p>If you’d like to read in more detail about what we sync, why, and what we do with it, please refer to these additional resources:</p> <ul> <li><a href="https://web.archive.org/web/20190828152918/https://en.wordpress.com/tos/">Automattic Terms of Service</a></li> <li><a href="https://web.archive.org/web/20190828152918/https://automattic.com/privacy/">Automattic Privacy Policy</a></li> <li><a href="https://web.archive.org/web/20190828152918/https://transparency.automattic.com/">Automattic Transparency Report</a></li> <li><a href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/dc704ec72f74b554a61f5b2df38c9bd5dc7eaeb9/sync/class.jetpack-sync-defaults.php">List of default site options synced by Jetpack (GitHub)</a></li> <li><a href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/master/sync/class.jetpack-sync-module-users.php#L8">List of user actions synced by Jetpack (GitHub)</a></li> <li><a class="cf_div_theme_dark clutterFree_existingDuplicate clutterFree_noIcon" href="https://web.archive.org/web/20190828152918/https://github.com/Automattic/jetpack/blob/master/sync/class.jetpack-sync-module-woocommerce.php">List of WooCommerce options, settings, and data synced by Jetpack</a> (GitHub)</li> <li><a href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/cookies/">List of browser cookies set/used by Jetpack</a></li> <li><a href="https://web.archive.org/web/20190828152918/https://wordpress.com/automattic-ads-tos/">WordAds Terms of Service</a> (only applicable to those using the service)</li> </ul> <h3 id="still-have-questions">Still Have Questions?</h3> <p>If you still have questions or require clarification on the information presented in this document, please feel free to <a href="https://web.archive.org/web/20190828152918/https://jetpack.com/contact-support/?rel=support">contact us</a> at any time.</p> <div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"> <div id="jp-relatedposts" class="jp-relatedposts"> <h3 class="jp-relatedposts-headline"><em>Related</em></h3> </div></div> </div><!-- .entry-content --> </div><!-- #post-## --> </div> <div class="r-side"><li id="widget-toc" class="widget-container widget_toc"> <h3 class="widget-title">Table Of Contents</h3> <ul id="toc-contents"><li><a href="#content-and-settings">Content and Settings</a></li><li><a href="#user-related-data">User-Related Data</a></li><li><a href="#themes-and-plugins">Themes and Plugins</a></li><li><a href="#additional-data">Additional Data</a></li><li><a href="#data-synced-by-feature">Data Synced by Feature</a></li><li><a href="#woocommerce-services">WooCommerce Services</a></li><li><a href="#more-information">More Information</a></li><li><a href="#still-have-questions">Still Have Questions?</a></li></ul> </li><li id="text-16" class="widget-container widget_text"><h3 class="widget-title">Categories</h3> <div class="textwidget"><ul> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/getting-started-with-jetpack/">Getting Started</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/social">Social</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/wordpress-com-stats/">WordPress.com Stats</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/appearance/">Appearance</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/photos-and-videos/">Photos and Videos</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/mobile">Mobile</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/writing">Writing</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/utilities/">Utilities</a></li> <li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/security/">Security</a></li><li><a href="https://web.archive.org/web/20190828152918/http://jetpack.me/support/privacy/">Privacy</a></li> </ul></div> </li><li id="text-17" class="widget-container widget_text"><h3 class="widget-title">Contact Us</h3> <div class="textwidget">Need more help? Feel free to <a href="/web/20190828152918/https://jetpack.com/contact-support/?rel=support">contact us</a>.</div> </li></div> </div> <footer class="jp-anchor"> <div class="in"> <div class="footer-cols"> <div class="footer-col"> <a href="/web/20190828152918/https://jetpack.com/" title="Jetpack" class="jp-logo"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 385.9 104.8"> <path class="jetpack-emblem" d="M52.4 0C23.5 0 0 23.5 0 52.4c0 28.9 23.5 52.4 52.4 52.4 28.9 0 52.4-23.5 52.4-52.4C104.8 23.5 81.3 0 52.4 0zM49.7 61.1H23.6l26.1-50.8V61.1zM55 94.4V43.6h26.1L55 94.4z"/><path d="M135.3 87c-1.5-2.3-2.9-4.6-4.3-6.8 7.4-4.5 9.9-8.1 9.9-14.9V26h-8.7v-7.5h18.5v44.8C150.7 74.7 147.4 81.1 135.3 87z"/><path d="M212.8 60.2c0 3.8 2.7 4.2 4.5 4.2s4.4-0.6 6.4-1.2v7c-2.8 0.9-5.7 1.6-9.7 1.6 -4.8 0-10.4-1.8-10.4-10.2V41h-5.1v-7.1h5.1V23.4h9.2v10.5h11.6V41h-11.6V60.2z"/><path d="M232 90.5V33.8h8.8v3.4c3.5-2.7 7.4-4.4 12.2-4.4 8.3 0 14.9 5.8 14.9 18.3 0 12.4-7.2 20.6-19.1 20.6 -2.9 0-5.2-0.4-7.6-0.9v19.6H232zM250.6 40.4c-2.7 0-6.1 1.3-9.3 4.1v19.3c2 0.4 4.1 0.7 6.9 0.7 6.5 0 10.2-4.1 10.2-12.7C258.4 43.9 255.7 40.4 250.6 40.4z"/><path d="M304.1 70.9h-8.6v-4.1h-0.2c-3 2.3-6.7 4.8-12.2 4.8 -4.8 0-10-3.5-10-10.6 0-9.5 8.1-11.3 13.8-12.1l8.1-1.1v-1.1c0-5-2-6.6-6.7-6.6 -2.3 0-7.7 0.7-12.1 2.5l-0.8-7.4c4-1.4 9.5-2.4 14.1-2.4 9 0 14.8 3.6 14.8 14.3V70.9zM294.9 53.6l-7.6 1.2c-2.3 0.3-4.7 1.7-4.7 5.1 0 3 1.7 4.7 4.2 4.7 2.7 0 5.6-1.6 8.1-3.4V53.6z"/><path d="M342.1 69.7c-3.8 1.3-7.2 2.1-11.5 2.1 -13.8 0-19.3-7.9-19.3-19.4 0-12.1 7.6-19.6 19.9-19.6 4.6 0 7.4 0.8 10.5 1.8v7.8c-2.7-1-6.6-2.1-10.4-2.1 -5.6 0-10.4 3-10.4 11.6 0 9.5 4.8 12.4 10.9 12.4 2.9 0 6.1-0.6 10.4-2.3V69.7z"/><path d="M359.5 49.8c0.8-0.9 1.4-1.8 13-15.9h12l-15 17.6 16.4 19.5h-12l-14.3-17.6v17.6h-9.2V18.5h9.2V49.8z"/><path d="M191.6 69.7c-4.8 1.5-8.9 2.1-13.7 2.1 -11.8 0-19.1-5.9-19.1-19.7 0-10.1 6.2-19.3 18.1-19.3 11.8 0 15.9 8.2 15.9 16 0 2.6-0.2 4-0.3 5.5h-23.8c0.2 8.1 4.8 10 11.7 10 3.8 0 7.2-0.9 11.1-2.3V69.7zM183.2 48.2c0-4.5-1.5-8.4-6.4-8.4 -4.6 0-7.4 3.3-8 8.4H183.2z"/> </svg> </a> <a href="#" class="wp-button language-toggle"> <span>en</span> <svg class="gridicon gridicons-chevron-down" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"></path></g></svg> </a> </div> <div class="footer-col"> <nav> <h4 title="Product">Product</h4> <ul> <li><a id="footer-cta-tour" href="https://web.archive.org/web/20190828152918/https://jetpack.com/features/" title="Take a tour of Jetpack">Tour</a></li> <li><a id="footer-cta-pricing" href="https://web.archive.org/web/20190828152918/https://jetpack.com/pricing/" title="View Jetpack Pricing">Pricing</a></li> <li><a id="footer-cta-blog" href="https://web.archive.org/web/20190828152918/https://jetpack.com/blog/" title="Jetpack News">News</a></li> <li><a id="footer-cta-about" href="https://web.archive.org/web/20190828152918/https://jetpack.com/about/" title="About Jetpack">About</a></li> <li><a id="footer-cta-apps" href="https://web.archive.org/web/20190828152918/https://apps.wordpress.com/get?utm_source=jetpack-com-footer&amp;utm_medium=direct&amp;utm_campaign=get-apps-promo" title="WordPress at your fingertips">Mobile app</a></li> <li><a id="footer-cta-privacy" href="https://web.archive.org/web/20190828152918/http://automattic.com/privacy/" title="Privacy Policy">Privacy Policy</a></li> <li><a id="footer-cta-tos" href="https://web.archive.org/web/20190828152918/http://wordpress.com/tos/" title="Terms of Service">Terms of Service</a></li> </ul> </nav> </div> <div class="footer-col"> <nav> <h4 title="Support &amp; Resources">Support &amp; Resources</h4> <ul> <li><a id="footer-cta-support" href="https://web.archive.org/web/20190828152918/https://jetpack.com/support/" title="Knowledge Base">Knowledge Base</a></li> <li><a id="footer-cta-forums" href="https://web.archive.org/web/20190828152918/https://wordpress.org/support/plugin/jetpack" title="Support Forums">Forums</a></li> <li><a id="footer-cta-contact" href="https://web.archive.org/web/20190828152918/https://jetpack.com/contact-support/" title="Contact Us">Contact Us</a></li> <li><a id="footer-cta-press" href="https://web.archive.org/web/20190828152918/https://automattic.com/press/" target="_blank" title="Press information and Jetpack branding materials">Press</a></li> <li><a id="footer-cta-themes" href="https://web.archive.org/web/20190828152918/https://jetpack.com/features/design/themes/showcase" title="Theme Showcase">Theme Showcase</a></li> <li><a id="footer-cta-security-library" href="https://web.archive.org/web/20190828152918/https://jetpack.com/features/security/library" title="Security Library">Security Library</a></li> <li><a id="footer-cta-biz-guide" href="https://web.archive.org/web/20190828152918/https://jetpack.com/business-guide" title="Business Guide">Business Guide</a></li> <li><a id="footer-cta-hosting-guide" href="https://web.archive.org/web/20190828152918/https://jetpack.com/hosting" title="Hosting Guide">Hosting Guide</a></li> </ul> </nav> </div> <div class="footer-col"> <nav> <h4 title="Developers">Developers</h4> <ul> <li><a id="footer-cta-developer" href="https://web.archive.org/web/20190828152918/https://developer.jetpack.com/" title="Developers Site">Developers Site</a></li> <li><a id="footer-cta-beta" href="https://web.archive.org/web/20190828152918/https://jetpack.com/beta/" title="Sign up for the Jetpack BETA Program">Beta Program</a></li> <li><a id="footer-cta-contribute" href="https://web.archive.org/web/20190828152918/https://jetpack.com/contribute/" title="Contribute to Jetpack">Contribute to Jetpack</a></li> <li><a id="footer-cta-dev-network" href="https://web.archive.org/web/20190828152918/https://jetpack.pro/" title="Developer Network">Developer Network</a></li> <li><a id="footer-cta-work" href="https://web.archive.org/web/20190828152918/https://automattic.com/work-with-us/?utm_source=jetpackcom&amp;utm_medium=link" title="Work With Us">Work With Us</a></li> </ul> </nav> </div> <div class="footer-col"> <nav> <h4 title="Partnerships">Partnerships</h4> <ul> <li><a id="footer-cta-affiliate" href="https://web.archive.org/web/20190828152918/https://jetpack.com/for/affiliates/" title="Become an Affiliate">Become an Affiliate</a></li> <li><a id="footer-cta-partner" href="https://web.archive.org/web/20190828152918/https://jetpack.com/for/hosts/" title="Become a Partner">Become a Partner</a></li> <li><a id="footer-cta-hosting-criteria" href="https://web.archive.org/web/20190828152918/https://jetpack.com/hosting/#criteria" title="Listing Criteria">Listing Criteria</a></li> </ul> </nav> </div> </div> </div> <div class="footer-plugs"> <div class="in"> <div class="a8c-services"> <a href="https://web.archive.org/web/20190828152918/https://wordpress.com/" title="Powering WordPress.com">Powering WordPress.com</a> </div> <div class="a8c-attr"> <a href="https://web.archive.org/web/20190828152918/http://automattic.com/" title="Automattic – makers of WordPress.com and more!"> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0" y="0" viewbox="0 0 928 38" xml:space="preserve"> <path d="M317.1 38.2c-12.6 0-20.7-9.1-20.7-18.5v-1.2c0-9.6 8.2-18.5 20.7-18.5 12.6 0 20.8 8.9 20.8 18.5v1.2C337.9 29.1 329.7 38.2 317.1 38.2zM331.2 18.6c0-6.9-5-13-14.1-13s-14 6.1-14 13v0.9c0 6.9 5 13.1 14 13.1s14.1-6.2 14.1-13.1V18.6zM175 36.8l-4.7-8.8h-20.9l-4.5 8.8h-7L157 1.3h5.5l19.5 35.5H175zM159.7 8.2l-7.7 14.9h15.7L159.7 8.2zM212.4 38.2c-12.7 0-18.7-6.9-18.7-16.2V1.3h6.6v20.9c0 6.6 4.3 10.5 12.5 10.5 8.4 0 11.9-3.9 11.9-10.5V1.3h6.7V22C231.4 30.8 225.8 38.2 212.4 38.2zM268.6 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H268.6zM397.3 36.8V8.7l-1.8 3.1 -14.9 25h-3.3l-14.7-25 -1.8-3.1v28.1h-6.5V1.3h9.2l14 24.4 1.7 3 1.7-3 13.9-24.4h9.1v35.5H397.3zM454.4 36.8l-4.7-8.8h-20.9l-4.5 8.8h-7l19.2-35.5h5.5l19.5 35.5H454.4zM439.1 8.2l-7.7 14.9h15.7L439.1 8.2zM488.4 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H488.4zM537.3 6.8v30h-6.7v-30h-15.5V1.3h37.7v5.5H537.3zM569.3 36.8V4.6c2.7 0 3.7-1.4 3.7-3.4h2.8v35.5H569.3zM628 11.3c-3.2-2.9-7.9-5.7-14.2-5.7 -9.5 0-14.8 6.5-14.8 13.3v0.7c0 6.7 5.4 13 15.3 13 5.9 0 10.8-2.8 13.9-5.7l4 4.2c-3.9 3.8-10.5 7.1-18.3 7.1 -13.4 0-21.6-8.7-21.6-18.3v-1.2c0-9.6 8.9-18.7 21.9-18.7 7.5 0 14.3 3.1 18 7.1L628 11.3zM321.5 12.4c1.2 0.8 1.5 2.4 0.8 3.6l-6.1 9.4c-0.8 1.2-2.4 1.6-3.6 0.8l0 0c-1.2-0.8-1.5-2.4-0.8-3.6l6.1-9.4C318.7 11.9 320.3 11.6 321.5 12.4L321.5 12.4z"/> <path d="M37.5 36.7l-4.7-8.9H11.7l-4.6 8.9H0L19.4 0.8H25l19.7 35.9H37.5zM22 7.8l-7.8 15.1h15.9L22 7.8zM82.8 36.7l-23.3-24 -2.3-2.5v26.6h-6.7V0.8H57l22.6 24 2.3 2.6V0.8h6.7v35.9H82.8z"/> <g display="none"> <path display="inline" d="M694.6 38c-6.4 0-11.3-2-15.4-5.3l3.3-4.6c3.2 2.5 7.1 4.3 11.7 4.3 5.6 0 8.2-2.6 8.2-6.9V1.1h6.7v24.8C708.9 32.8 703.6 38 694.6 38zM750.7 36.6l-4.7-8.8h-20.8l-4.5 8.8h-7l19.2-35.5h5.5l19.5 35.5H750.7zM735.4 8L727.7 23h15.7L735.4 8zM806.4 36.6V8.5l-1.8 3.1 -14.9 25h-3.2l-14.7-25 -1.8-3.1v28.1h-6.5V1.1h9.2l14 24.3 1.7 3 1.7-3L804 1.1h9.1v35.5H806.4z"/> </g> <path d="M718.1 36.6l-4.7-8.7h-20.7l-4.5 8.7h-7l19-35.2h5.5l19.3 35.2H718.1zM702.9 8.3l-7.7 14.8h15.6L702.9 8.3zM730.9 36.6V1.4h6.6v35.2H730.9zM777.9 36.6c-1.8 0-2.6-2.5-2.8-5.7l-0.2-3.6c-0.2-3.5-1.6-5-8.2-5h-12.5v14.2h-6.6V1.4h19.2c10.6 0 15.3 4.2 15.3 9.7 0 3.9-2 7.5-8.8 8.8 6.9 0.5 8.4 3.6 8.4 7.8l0.1 2.9c0.1 2.4 0.5 4.2 2.2 5.9v0.2H777.9zM775.4 11.9c0-2.5-2.1-5-7.7-5h-13.5v10.6h14.1c4.9 0 7.1-2.3 7.1-5.1V11.9zM791.4 36.6V1.4h6.6v29.7h27.5v5.5H791.4zM832.4 36.6V1.4h6.6v35.2H832.4zM880.7 36.6l-22.9-23.6 -2.2-2.5v26.1H849V1.4h6.3l22.2 23.5 2.3 2.5V1.4h6.6v35.2H880.7zM896.5 36.6V1.4h32v5.5h-25.4v9h19.5v5.3h-19.5v9.8h25.4v5.5H896.5z"/> <g display="none"> <rect x="88.4" y="1.2" display="inline" fill="#DEDDDD" width="49.4" height="35.5"/> <rect x="632.4" y="1.2" display="inline" fill="#DEDDDD" width="49.4" height="35.5"/> </g> </svg> </a> </div> </div> </div> <div class="in"> <div class="hiring"> <a id="code-wrangler" href="https://web.archive.org/web/20190828152918/https://automattic.com/work-with-us/code-wrangler/?utm_source=jetpackcom&amp;utm_campaign=cw-php-we" title="We are super nice :)">We are hiring PHP developers. Join us!</a> </div> <script> var cwLink = document.getElementById( 'code-wrangler' ); var alternatives = [ {text: 'Automattic is hiring PHP developers. Join us!', campaign: 'cw-php-a8c'}, {text: 'Automattic is hiring backend developers. Join us!', campaign: 'cw-backend-a8c'}, {text: 'We are hiring backend developers. Join us!', campaign: 'cw-backend-we'}, {text: 'Automattic is hiring PHP developers anywhere in the world. Join us!', campaign: 'cw-php-a8c-anywhere'}, {text: 'Automattic is hiring backend developers anywhere in the world. Join us!', campaign: 'cw-backend-a8c-anywhere'}, {text: 'Know PHP and want to improve Jetpack? Join us!', campaign: 'cw-knowphp-jetpack'}, {text: 'Know PHP and want to improve Jetpack from anywhere in the world? Join us!', campaign: 'cw-knowphp-jetpack-anywhere'} ]; var chosen = alternatives[ Math.floor( Math.random() * alternatives.length ) ]; cwLink.href = 'https://web.archive.org/web/20190828152918/https://automattic.com/work-with-us/code-wrangler/?utm_source=jetpackcom&utm_medium=link&utm_campaign=' + chosen.campaign; cwLink.innerHTML = chosen.text; </script> </div> <script> // Language switcher widget (function($) { 'use strict'; var locales = [{"code":"en","lname":"English","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/en.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"ar","lname":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/ar.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"de","lname":"Deutsch","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/de.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"es","lname":"Espa\u00f1ol","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/es.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"fr","lname":"Fran\u00e7ais","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/fr.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"he","lname":"\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/he.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"id","lname":"Bahasa Indonesia","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/id.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"it","lname":"Italiano","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/it.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"ja","lname":"\u65e5\u672c\u8a9e","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/ja.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"ko","lname":"\ud55c\uad6d\uc5b4","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/ko.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"nl","lname":"Nederlands","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/nl.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"pt-br","lname":"Portugu\u00eas do Brasil","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/br.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"ro","lname":"Rom\u00e2n\u0103","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/ro.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"ru","lname":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/ru.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"sv","lname":"Svenska","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/sv.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"tr","lname":"T\u00fcrk\u00e7e","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/tr.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"zh-cn","lname":"\u7b80\u4f53\u4e2d\u6587","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/zh-cn.jetpack.com\/support\/what-data-does-jetpack-sync\/"},{"code":"zh-tw","lname":"\u7e41\u9ad4\u4e2d\u6587","href":"\/\/web.archive.org\/web\/20190828152918\/https:\/\/zh-tw.jetpack.com\/support\/what-data-does-jetpack-sync\/"}]; window.WPCOMLocaleSwitcher.init( locales, 'en', '.jetpack.com' ); $( '.language-toggle' ).on( 'click', function( event ) { event.preventDefault(); window.WPCOMLocaleSwitcher.toggle(); }); })(jQuery); </script> </footer> <!-- wpcom_wp_footer --> <!-- A8C Analytics [start] --> <script type="text/javascript"> ( function( $ ) { 'use strict'; if ( ! $ ) return; // No jQuery. window.a8cAnalyticsConfig = {"cookieBanner":{"text":"Our websites and dashboards use cookies. By continuing, you agree to their use. <a target=\"_blank\" href=\"https:\/\/automattic.com\/cookies\">Learn more<\/a>, including how to control cookies.","buttonText":"Got It!","cookieName":"sensitive_pixel_option","skipBanner":false,"cssZIndex":50001,"cookieDomain":"jetpack.com"},"fireAnalyticsOptions":[]}; } )( window.jQuery ); </script> <script type="text/javascript"> $document = jQuery( window.document ); $document.on( 'a8c-analytics:loaded', function() { 'use strict'; var kit = window.a8cAnalytics.kit; var gao = kit.getQueryVar( 'gao' ) || ''; var _gaexp = String( kit.docCookies.getItem( '_gaexp' ) || '' ); var gaOptimize = window.a8cGAOptimize || null; gaOptimize = gaOptimize && gaOptimize.isEnabled() ? gaOptimize : null; function fireAffiliateReferrals() { kit.attachScriptElement( 'https://web.archive.org/web/20190828152918/https://refer.wordpress.com/wp-content/themes/refer-wordpress/assets/js/referrals.min.js?v=20181205', { 'data-vendor': 67401, } ); } function fireGoogleAnalytics( id ) { kit.loadGoogleAnalytics(); ga( 'create', id, 'auto' ); ga( 'set', 'transport', 'function' === typeof navigator.sendBeacon ? 'beacon' : 'xhr' ); ga( 'set', 'anonymizeIp', true ); if ( gaOptimize ) { ga( 'require', gaOptimize.config.id ); } ga( 'send', 'pageview' ); if ( gaOptimize ) { if ( gao ) { resetGAOptimizeExperiment( gao ); } gaOptimize.push( 'event', 'optimize.callback', { callback: fireGAOptimizeCallback } ); gaOptimize.dataLayer.push( { event: 'optimize.activate' } ); } } function resetGAOptimizeExperiment( experimentDotVar ) { experimentDotVar = String( experimentDotVar || '' ); var gaexps = []; var shouldUpdate = false; var experimentId = experimentDotVar.split( '.' )[0]; var variationId = experimentDotVar.split( '.' )[1] || ''; var experiments = _gaexp.split( '.' ).slice( 2 ).join( '.' ).split( /\!/ ); var prefix = _gaexp.split( '.' ).slice( 0, 2 ).join( '.' ) || ''; experiments.forEach( function( experiment ) { if ( 0 === experiment.indexOf( experimentId + '.' ) && ! ( new RegExp( '(?:^|\\.)' + kit.escRegex( experimentId ) + '\\.[0-9]+\\.' + kit.escRegex( variationId ) + '$' ) ).test( experiment ) ) { shouldUpdate = true; } else { gaexps.push( experiment ); } } ); if ( shouldUpdate ) { _gaexp = ( prefix ? prefix + '.' : '' ) + gaexps.join( '!' ); kit.docCookies.setItem( '_gaexp', _gaexp, 86400 * 90, '/', '.rootDomain' ); } } function fireGAOptimizeCallback( variationId, experimentId ) { if ( ! experimentId || ! variationId ) { return; } if ( gaOptimize.refs.tracked[ experimentId ] || -1 !== _gaexp.indexOf( '.' + experimentId + '.' ) || -1 !== _gaexp.indexOf( '!' + experimentId + '.' ) ) { return; } var props = { lp_name: config.lpName, lp_variation: config.lpVariation, lp_personal_variation: config.lpPersonalVariation, experiment_id: experimentId, variation_id: variationId, }; gaOptimize.refs.tracked[ experimentId ] = variationId; window._tkq.push( [ 'recordEvent', 'wpcom_gaexp_start', props ] ); } function fireFacebook() { kit.loadFacebook(); fbq( 'init', '919484458159593' ); fbq( 'track', "PageView" ); } function fireBing() { (function( w, d, t, r, u ) { var f, n, i; w[ u ] = w[ u ] || [], f = function() { var o = { ti: "4074038" }; o.q = w[ u ], w[ u ] = new UET( o ), w[ u ].push( "pageLoad" ) }, n = d.createElement( t ), n.src = r, n.async = 1, n.onload = n.onreadystatechange = function() { var s = this.readyState; s && s !== "loaded" && s !== "complete" || ( f(), n.onload = n.onreadystatechange = null ) }, i = d.getElementsByTagName( t )[ 0 ], i.parentNode.insertBefore( n, i ) } )( window, document, "script", "//web.archive.org/web/20190828152918/https://s1.wp.com/wp-content/mu-plugins/a8c-analytics/3rd-party/bing/bat.js?v=20190826", "uetq" ); } function loadGoogleAdsGtag() { kit.loadGtag( 'AW-946162814' ); } if ( kit.doNotTrack() ) { if ( gaOptimize ) { gaOptimize.endAsyncDim(); } return; } // ------- Fire Normal Pixels ------- fireAffiliateReferrals(); // ------- Fire "Sensitive" Pixels ------- $document.on( 'a8c-analytics:fire-sensitive-pixels', function() { fireGoogleAnalytics( 'UA-52447-43' ); loadGoogleAdsGtag(); fireFacebook(); fireBing(); kit.fireHotjar( '6240' ); } ); } ); </script> <script type="text/javascript"> ( function( $ ) { 'use strict'; if ( ! $ ) return; // No jQuery. $.ajax( { async: true, cache: true, dataType: 'script', url: "https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/s1.wp.com\/wp-content\/mu-plugins\/a8c-analytics\/a8c-analytics.js?v=1565090810", } ); } )( window.jQuery ); </script> <!-- A8C Analytics [end] --> <script type="text/javascript" src="//web.archive.org/web/20190828152918js_/https://0.gravatar.com/js/gprofiles.js?ver=201935y"></script> <script type="text/javascript"> /* <![CDATA[ */ var WPGroHo = {"my_hash":""}; /* ]]> */ </script> <script type="text/javascript" src="https://web.archive.org/web/20190828152918js_/https://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1380573781h"></script> <script> //initialize and attach hovercards to all gravatars jQuery( document ).ready( function( $ ) { if (typeof Gravatar === "undefined"){ return; } if ( typeof Gravatar.init !== "function" ) { return; } Gravatar.profile_cb = function( hash, id ) { WPGroHo.syncProfileData( hash, id ); }; Gravatar.my_hash = WPGroHo.my_hash; Gravatar.init( 'body', '#wp-admin-bar-my-account' ); }); </script> <div style="display:none"> </div> <script type="text/javascript"> /* <![CDATA[ */ var comment_like_text = {"loading":"Loading..."}; /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ var actionbardata = {"siteID":"20115252","siteName":"Jetpack \u2014 Essential Security & Performance for WordPress","siteURL":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/jetpack.com","icon":"<img alt='' src='https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/jetpackme.files.wordpress.com\/2018\/04\/cropped-jetpack-favicon-2018.png?w=50' class='avatar avatar-50' height='50' width='50' \/>","canManageOptions":"","canCustomizeSite":"","isFollowing":"","themeSlug":"a8c\/jetpackme-new","signupURL":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/wordpress.com\/start\/","loginURL":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fjetpack.com%2Fsupport%2Fwhat-data-does-jetpack-sync%2F&signup_flow=account&domain=jetpack.com","themeURL":"","xhrURL":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/jetpack.com\/wp-admin\/admin-ajax.php","nonce":"7ae2fd6193","isSingular":"1","isFolded":"","isLoggedIn":"","isMobile":"","subscribeNonce":"<input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"617da005e8\" \/>","referer":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/jetpack.com\/support\/what-data-does-jetpack-sync\/","canFollow":"1","feedID":"45339984","statusMessage":"","customizeLink":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/jetpackme.wordpress.com\/wp-admin\/customize.php?url=https%3A%2F%2Fjetpackme.wordpress.com%2Fsupport%2Fwhat-data-does-jetpack-sync%2F","postID":"12842","shortlink":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/wp.me\/p1moTy-3l8","canEditPost":"","editLink":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/wordpress.com\/edit\/jetpack_support\/jetpack.com\/12842","statsLink":"https:\/\/web.archive.org\/web\/20190828152918\/https:\/\/wordpress.com\/stats\/post\/12842\/jetpack.com","i18n":{"view":"View site","follow":"Follow","following":"Following","edit":"Edit","login":"Log in","signup":"Sign up","customize":"Customize","report":"Report this content","themeInfo":"Get theme: Jetpackme New","shortlink":"Copy shortlink","copied":"Copied","followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","editSubs":"Manage subscriptions","viewReader":"View site in Reader","viewReadPost":"View post in Reader","subscribe":"Sign me up","enterEmail":"Enter your email address","followers":"Join 105,861 other followers","alreadyUser":"Already have a WordPress.com account? <a href=\"https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fjetpack.com%2Fsupport%2Fwhat-data-does-jetpack-sync%2F&signup_flow=account&domain=jetpack.com\">Log in now.<\/a>","stats":"Stats"}}; /* ]]> */ </script> <script type="text/javascript" src="https://web.archive.org/web/20190828152918js_/https://s2.wp.com/_static/??-eJyVjl0OgjAQhC9kWY1B5cF4ltKuuoW22B+Kt7dEQ1ATEp52MrPfzkLqmLAmoAmgPEjsSWA3FMpvYBbpyLo23sh4aKlBD4+IEe/cyBbdwrKwWmeLvSE10jX4RB2ugb6MXzDnKn/jnp9RXGlgiaRNvtBkFnq4zDmruQPNfUCXFbM9Okcy907eygvBcdH8fTmHRCBrRmhSefuiz7uyPJyqars/qheYWJhT"></script> <script type="text/javascript"> // <![CDATA[ (function() { try{ if ( window.external &&'msIsSiteMode' in window.external) { if (window.external.msIsSiteMode()) { var jl = document.createElement('script'); jl.type='text/javascript'; jl.async=true; jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(jl, s); } } }catch(e){} })(); // ]]> </script><script src="//web.archive.org/web/20190828152918js_/https://stats.wp.com/w.js?60" type="text/javascript" async defer></script> <script type="text/javascript"> _tkq = window._tkq || []; _stq = window._stq || []; _tkq.push(['storeContext', {'blog_id':'20115252','blog_tz':'0','user_lang':'en','blog_lang':'en','user_id':'0'}]); _stq.push(['view', {'blog':'20115252','v':'wpcom','tz':'0','user_id':'0','post':'12842','subd':'jetpackme'}]); _stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1lSiYrZXhzUkM5fD1uTDNLUGt6QzVbd3FKb3Q4aWxFU0VMK3ppSG1wamM0bi81JStxN2lKP1pvVnxQRHk3W0d3VEh0SklpNENJfHppaiZjVlFtdzJJS0ovSDNEK0wuP0ZBPW5mTU1iSjY2dXExbCVab2ZBfFM9U2RrZW1xX1lNfHBnclY1UX4tXWp+eks2SEtsVlk9dFJSdWdMWkxDYmxzdzlNMGl4TU02WDkxJm1KY35lLzVEWnxrYV05TjFBfnNkRjdkZGRYaCtCNzRJbltVLGFIWUZIS3d2VFdtWGVTXWpnVm4xL2pVRm5MeXBwYjNPTXFDMGdiX2Etd2I4UXk1TCxDJixmd0grRGxRb2MmSkIwUnc5VEo1UElDWyxXSy9FTFd4cytvVVE9c2NLTkFleGxbUUdtSCVH'}]); _stq.push([ 'clickTrackerInit', '20115252', '12842' ]); </script> <noscript><img src="https://web.archive.org/web/20190828152918im_/https://pixel.wp.com/b.gif?v=noscript" style="height:0px;width:0px;overflow:hidden" alt=""/></noscript> <script type="text/javascript" src="https://web.archive.org/web/20190828152918js_/https://s1.wp.com/wp-content/themes/a8c/jetpackme-new/js/utm-tracking.js?m=1541183651h"></script> <script> if ( 'object' === typeof wpcom_mobile_user_agent_info ) { wpcom_mobile_user_agent_info.init(); var mobileStatsQueryString = ""; if( false !== wpcom_mobile_user_agent_info.matchedPlatformName ) mobileStatsQueryString += "&x_" + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName; if( false !== wpcom_mobile_user_agent_info.matchedUserAgentName ) mobileStatsQueryString += "&x_" + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName; if( wpcom_mobile_user_agent_info.isIPad() ) mobileStatsQueryString += "&x_" + 'ipad_views' + '=' + 'views'; if( "" != mobileStatsQueryString ) { new Image().src = document.location.protocol + '//web.archive.org/web/20190828152918/https://pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random(); } } </script><!-- FILE ARCHIVED ON 15:29:18 Aug 28, 2019 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 22:27:03 Feb 26, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.738 exclusion.robots: 0.032 exclusion.robots.policy: 0.019 esindex: 0.011 cdx.remote: 12.116 LoadShardBlock: 275.806 (6) PetaboxLoader3.datanode: 211.113 (7) PetaboxLoader3.resolve: 271.659 (2) load_resource: 303.175 -->

Pages: 1 2 3 4 5 6 7 8 9 10