speed matters - wordpress.tvare featured images loading at the right size?

32
Speed Matters Optimizing Your WordPress Site for Speed!

Upload: others

Post on 23-Aug-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Speed Matters - WordPress.tvAre featured images loading at the right size?

Speed Matters

Optimizing Your WordPress Site for Speed!

Page 2: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 3: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 4: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 5: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 6: Speed Matters - WordPress.tvAre featured images loading at the right size?

Will she leave?

Page 7: Speed Matters - WordPress.tvAre featured images loading at the right size?

You can’t drive fast if you have a flat tire.

Page 8: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 9: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 10: Speed Matters - WordPress.tvAre featured images loading at the right size?

https://developers.google.com/speed/pagespeed/insights/

Page 11: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 12: Speed Matters - WordPress.tvAre featured images loading at the right size?

Live Demo

Page 13: Speed Matters - WordPress.tvAre featured images loading at the right size?

Remove plugins you don’t need for more speed!

Page 14: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 15: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 16: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 17: Speed Matters - WordPress.tvAre featured images loading at the right size?

Lazy Load Imageshttps://wordpress.org/plugins/lazy-load/

Page 18: Speed Matters - WordPress.tvAre featured images loading at the right size?

Are featured images loading at the right size?https://wordpress.org/plugins/regenerate-thumbnails/

Page 19: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 20: Speed Matters - WordPress.tvAre featured images loading at the right size?

Are images in posts the right size?https://wordpress.org/plugins/replace-content-image-size/

Page 21: Speed Matters - WordPress.tvAre featured images loading at the right size?

Optimize Imageshttps://wordpress.org/plugins/wp-resized-image-quality/

Page 22: Speed Matters - WordPress.tvAre featured images loading at the right size?

FONTS

Page 23: Speed Matters - WordPress.tvAre featured images loading at the right size?
Page 24: Speed Matters - WordPress.tvAre featured images loading at the right size?

function prefix_fonts() {

// Source Sans Pro wp_enqueue_style( 'prefix_source_sans', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic', array(), null, 'screen' );

// Noto wp_enqueue_style( 'prefix_noto', '//fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic', array(), null, 'screen' );

} add_action( 'wp_enqueue_scripts', 'prefix_fonts' );

Page 25: Speed Matters - WordPress.tvAre featured images loading at the right size?

function prefix_fonts() {

// Source Sans Pro + Noto wp_enqueue_style( 'prefix_fonts', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic|Noto+Serif:400,700,400italic', array(), null, 'screen' );

} add_action( 'wp_enqueue_scripts', 'prefix_fonts' );

Page 26: Speed Matters - WordPress.tvAre featured images loading at the right size?

Concat and Minify

Page 27: Speed Matters - WordPress.tvAre featured images loading at the right size?

Conditional Loading of

Scripts & Styles

Page 28: Speed Matters - WordPress.tvAre featured images loading at the right size?

if ( !is_singular() && !is_404() ) { wp_enqueue_script( 'masonry' ); }

Page 29: Speed Matters - WordPress.tvAre featured images loading at the right size?

if ( is_singular() || is_404() ) { wp_dequeue_script( 'masonry' ); }

Page 30: Speed Matters - WordPress.tvAre featured images loading at the right size?

Thanks!

Page 31: Speed Matters - WordPress.tvAre featured images loading at the right size?

More at:wptheming.com

Page 32: Speed Matters - WordPress.tvAre featured images loading at the right size?

Twitter:@devinsays