jetpack secrets - theme tools, actions and filters, and other little known facts

24
Jetpack Secrets Theme Tools, Actions and Filters, and other little known facts

Upload: richard-archambault

Post on 16-Jan-2017

456 views

Category:

Internet


8 download

TRANSCRIPT

Page 1: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Jetpack Secrets Theme Tools, Actions and Filters, and

other little known facts

Page 2: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

@richardmtl

Happiness Engineer with Automattic

[email protected]

Richard Archambault

Montrealer, fan of metros (and Mini Metro!)

wpmtl.org

Page 3: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Theme Tools

Page 4: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Social Icons Widget Social Menu

• Facebook • Twitter • Instagram • Pinterest • LinkedIN • Github • YouTube • Vimeo • Google+

• CodePen • Digg • Dribble • Dropbox • Email • Facebook • Flickr • Foursquare • Github • Google+ • Instagram • LinkedIn • Path • Pinterest

• Pocket • Polldaddy • Reddit • RSS feed • Skype • Spotify • StumbleUpon • Tumblr • Twitch • Twitter • Vimeo • WordPress • Youtube

Social LinksWidgets

• Facebook • Twitter • LinkedIn • Google+ • Tumblr

Publicize connections Custom Menu

Let’s get Social!

Page 5: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Social Linksadd_theme_support('social-links',array('facebook','twitter','linkedin','google_plus','tumblr',));

<ahref="<?phpechoesc_url(get_theme_mod('jetpack-facebook'));?>"><?php_e('Facebook','textdomain');?></a>

https://jetpack.com/support/social-links/

Page 6: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Social Menu

add_theme_support('jetpack-social-menu');

<?phpif(function_exists('jetpack_social_menu'))jetpack_social_menu();?>

https://jetpack.com/support/social-menu/

Page 7: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Responsive Video

functionjetpackme_responsive_videos_setup(){add_theme_support('jetpack-responsive-videos');}add_action('after_setup_theme','jetpackme_responsive_videos_setup');

https://jetpack.com/support/responsive-videos/

Page 8: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Breadcrumbs

if(function_exists('jetpack_breadcrumbs')):?><divclass="my-breadcrumbs"><?phpjetpack_breadcrumbs();?></div><!--.my-breadcrumbs--><?phpendif;?>

https://jetpack.com/support/responsive-videos/

Page 9: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Other Theme Tools

•Tonesque (colours!) •Infinite Scroll •Featured Content

Page 10: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Useful Filters

Page 11: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Publicize

add_filter('publicize_checkbox_default','__return_false');

Page 12: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Open Graph

functionjetpackme_developer_fb_home_image($tags){if(is_home()||is_front_page()){//RemovethedefaultblankimageaddedbyJetpackunset($tags['og:image']);$fb_home_img='YOUR_IMAGE_URL';$tags['og:image']=esc_url($fb_home_img);}return$tags;}add_filter('jetpack_open_graph_tags','jetpackme_developer_fb_home_image');

Custom tag for the home page

https://jetpack.com/2013/07/12/add-a-default-image-open-graph-tag-on-home-page/

Page 13: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Open Graphfunctionjetpackdeveloper_custom_image($media,$post_id,$args){if($media){return$media;}else{$permalink=get_permalink($post_id);$url=apply_filters('jetpack_photon_url','YOUR_LOGO_IMG_URL');returnarray(array('type'=>'image','from'=>'custom_fallback','src'=>esc_url($url),'href'=>$permalink,));}}add_filter('jetpack_images_get_images','jetpackdeveloper_custom_image',10,3);

Add fallback default image

https://jetpack.com/2013/10/15/add-a-default-fallback-image-if-no-image/

Page 14: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Subscriptions

add_filter('jetpack_allow_per_post_subscriptions','__return_true');

Checkbox for activating per post

Page 15: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Subscriptions

functionjetpackme_exclude_posts_subscriptions($categories){$categories=array('boring','dull');return$categories;}add_filter('jetpack_subscriptions_exclude_these_categories','jetpackme_exclude_posts_subscriptions');

Exclude categories of posts

Page 16: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Related Posts

//Onlyreturnimageandgallerypostformatsfunctionjetpackme_related_post_only_images($post_formats,$post_id){$post_formats[]='image';$post_formats[]='gallery';return$post_formats;}add_filter('jetpack_relatedposts_filter_post_formats','jetpackme_related_post_only_images');

Only return specific post formats

Page 17: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Related Posts

functionjetpackme_more_related_posts($options){$options['size']=6;return$options;}add_filter('jetpack_relatedposts_filter_options','jetpackme_more_related_posts');

Change the number of posts displayed

https://jetpack.com/support/related-posts/customize-related-posts/

Page 18: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Related Posts

functionallow_my_post_types($allowed_post_types){$allowed_post_types[]='your-post-type';return$allowed_post_types;}add_filter('rest_api_allowed_post_types','allow_my_post_types');

Include Custom Post Types

https://jetpack.com/support/related-posts/customize-related-posts/

Page 19: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Need help?

jetpack.com/support

@jetpack

Page 20: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

Lots more!

https://jetpack.com/tag/hook-of-the-month/

Page 21: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

WordCamp Calgary Exclusive!

Page 22: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

https://developer.jetpack.com/

Page 23: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts
Page 24: Jetpack Secrets - Theme Tools, Actions and Filters, and other little known facts

@[email protected]

Questions?