launch your site with jetpack!

Post on 08-Aug-2015

136 Views

Category:

Internet

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Launch your site with Jetpack!

@richardmtl

Happiness Engineer with Automattic

richard@automattic.com

Richard Archambault

Montrealer, fan of metros (and Mini Metro!)

wpmtl.org

WordPress.org WordPress.com

+

What is Jetpack?

Connection with WordPress.com

https://signup.wordpress.com/signup/?user=1

Popular Features

Stats!

Custom CSS

Tiled Galleries

Related Posts

Widget Visibility

Site Management

Publicize

Tips!

Working with a staging environment

• It’s very important to disconnect Jetpack before cloning or copying a site from the staging environment to production or vice versa.

• If you lose your stats, don’t worry! Contact us and we’ll fix things up for you!

Working with client sites• There is one primary connection for each site (though other

users on a site can connect to WordPress.com as well). It’s best to use your client’s WordPress.com account to connect with. If they have a Gravatar or Akismet account, they have a WordPress.com account.

• You can also use the Jetpack Dev mode:

define(  'JETPACK_DEV_DEBUG',  true);

wp-­‐config.php:

in a pluginadd_filter(  'jetpack_development_mode',  '__return_true'  );

Working with client sites

• Control the modules that are activated by default:

function  my_function_only_stats()  {          return  array(  'stats'  );  }  add_filter(  'jetpack_get_default_modules',  'my_function_only_stats'  );  

Working with client sites

• Never show a particular module:

function  function_only_stats  (  $modules  )  {          $return  =  array();          $return['stats']  =  $modules['stats'];          return  $return;  }  add_filter(  'jetpack_get_available_modules',                            'function_only_stats'  );

Thanks, Jetpack Jeremy!

http://jeremy.hu/tag/jetpack/ @jeherve

Contribute!

github.com/Automattic/Jetpack

translate.wordpress.com/projects/jetpack/

Need help?

jetpack.me/support

@jetpack

@richardmtlrichard@automattic.com

Questions?

top related