SlideShare a Scribd company logo
1 of 34
Optimizing Your
WordPress SiteWhy speed matters, and how to get there
Stephen Bell
Steed Interactive
Stephen Bell
• Worked in web marketing at
Oklahoma Christian University
for 10 years
• Started design and web
development company with my
wife this year
steedokc.com
About Me
Why Bother
Optimizing?
https://blog.kissmetrics.com/loading-time/ (2011)
Keep People on Your Site
https://blog.kissmetrics.com/loading-time/ (2011)
“A one-second delay in
page response can result
in a 7% reduction in
conversions."
More Interactions & Purchases
https://blog.kissmetrics.com/loading-time/ (2011)
“47% of consumers expect
a web page to load in 2
seconds or less.”
Visitor Expectations
https://moz.com/learn/seo/page-speed
“Google has indicated site speed is one of the
signals used by its algorithm to rank pages.”
Google Search Results Ranking
“A slow page speed means that search engines
can crawl fewer pages using their allocated
crawl budget.”
How Fast is My
Site?
(Aim for less than 3 seconds)
tools.pingdom.com - Select a US city under “Settings”
Note: This only shows you your site speed on a very fast connection. To test
different speeds on your own computer, learn about Chrome Developer Tools.
1. Load smaller things
2. Load fewer things
3. Load closer things
4. Cache things
(save completed pieces for later)
5. Load the important things first
6. Get a faster server
Ways of Improving Site Speed
• JPG - Photos, scanned drawings or art
• PNG - Images with solid colors, simple gradients
• SVG - Logos saved as paths instead of pixels
• GIF - Funny animated things
When in doubt, use JPG!
Load smaller things
Use the Right Image File Type
PNG
664 KB
Load smaller things
Use the Right Image File Type
JPG (80% quality)
157 KB
Don’t use PNG for photos! They take up 4X as much space!
• Get a WordPress plugin that recompresses images as
they’re uploaded (40-50% off of each image, with no
visible loss of quality)
• “Compress JPEG & PNG images” (TinyPNG)
Free for up to 500 images/month
https://wordpress.org/plugins/tiny-compress-images/
• “WP Smush”
• Free, with premium version available
https://wordpress.org/plugins/wp-smushit/
Load smaller things
Recompress Images with WP Plugins
Load smaller things
Responsive Images
2560px wide 640px wide
• Give people the correct
image size for the
browser/device they’re
using
Load smaller things
Responsive Images
<img src="image.jpg" width="800" height="600"
srcset="image-400x300.jpg 400w, image-600x450.jpg 600w, image.jpg 1000w"
sizes="(min-width:1024px) 33.3vw, (min-width:640px) 50vw, 100vw"
>
• srcset - These are the images that are
available, and their sizes.
• sizes - These are the rules that tell the
browser which image to pick.
• Code example:
Steed site (portfolio)
Load smaller things
Responsive Images
• RICG Responsive Images plugin
https://wordpress.org/plugins/ricg-responsive-images/
• “Bringing automatic default responsive images to
WordPress.”
• Automatically adds simple “srcset” and “sizes” to images in
your posts.
• Keeps images in your posts from being higher resolution
than your browser width.
• You still need to add new image thumbnail sizes to
WordPress to make sure they’re available.
• If you’re making templates yourself, plugin gives you
functions, lets you write your own “sizes” for better fitting
images.
Load smaller things
Turn on GZIP
• Similar to “zipping” a file, the server compresses text
files as they’re sent out.
• Can be turned on by editing settings files, or done
with a plugin like W3 Total Cache.
http://softstribe.com/wordpress/enable-gzip-compression-in-wordpress
Load fewer things
Minify and Combine CSS & JavaScript
• Every extra file you ask the server for makes things just a
little bit slower
• Whitespace (extra spaces, tabs, line breaks) and
comments aren’t useful to visitor, make the page load
slower
• “Minifying” removes unnecessary code and combines files
Load fewer things
Minify and Combine CSS & JavaScript
• WordPress Plugin: “Autoptimize”
https://wordpress.org/plugins/autoptimize/
• Minifies CSS, JS and HTML
• Combines CSS files together, JS files together
• Typically, just install it, check boxes, and it works
Load fewer things
Get Rid of Things You Don’t Need
• Prioritize what you need and don’t need on your
pages
• Social sharing buttons?
• Big web fonts?
• Video embeds?
• Unnecessary tracking code?
• Complex advertising network code?
Load closer things
Content Delivery Network
• If your visitor is in a different part of the world
than your web hosting, it takes longer to get
to them.
• A Content Delivery Network (CDN) saves
your files on different computers around the
world to speed things up.
Load closer things
Content Delivery Network
• Free service that sits between your domain
name server and your hosting server
• Automatically saves all your images, static
pages to a CDN
• Bonus: A bit of extra security
Another option: JetPack plugin - Photon
https://developer.wordpress.com/docs/photon/
https://www.cloudflare.com
Cache things
Turn on Server-Side Caching
• WordPress assembles your page each time someone
visits it. It makes your page out of database
information, PHP files, and outside sources, which
takes time.
• When you “cache,” you’re pre-assembling your page
code to be handed off to your visitor
• Caching can happen on multiple levels:
• Your web host (i.e. SiteGround Super Cacher)
• As a plugin in your WordPress (i.e. W3 Total Cache)
• On another server (i.e. CloudFlare)
Cache things
Turn on Server-Side Caching
• W3 Total Cache
https://wordpress.org/plugins/w3-total-cache/
• Be sure to enable “page
cache”
Load the Important Things First
Prioritize “Above the Fold” Content
• “Lazy load” images - Stops images from
loading until you actually get to them on
the page
http://www.elegantthemes.com/blog/tips-tricks/how-to-add-lazy-loading-to-wordpress
• “Critical path” CSS - Load the CSS for the top of the
page inline first, separately from all the other CSS,
which gets loaded at the bottom
https://developers.google.com/web/fundamentals/performance/critical-rendering-path/
• Autoptimize plugin can do this, but doesn’t let you
do different CSS for each page
Get a Faster Server
Use a Reputable Host
• Sometimes your site is slow because your web host is
slow. Greedy companies try to cram too many sites,
too much traffic on their servers.
• Reputable, fast hosts that people keep telling me
about:
siteground.com
asmallorange.com
wpengine.com
Get a Faster Server
Use a Reputable Host
• A list of web site hosts, arranged by what percentage
of people say positive or negative things about them
on Twitter:
http://reviewsignal.com/webhosting/compare/
Case Study:
Splendry.com
• Before:
• Problem: 15-30 second delay
before page starts loading
• Page loads in 8.5 seconds
• Page weight: 4.5 MB
• Now:
• No noticeable delay
• Page loads in 1.5 seconds
• Page weight: 1.2 MB
Case Study:
Splendry.com
• What we did (in order of loading
time importance):
• Moved from GoDaddy to
SiteGround
• Change all PNG photos to JPGs
• Smush WP plugin
• SuperCacher (SiteGround) and
W3 Total Cache plugins
• Autoptimize plugin
• CloudFlare
• Other small tweaks
You Can’t Fix
Everything
It’s up to you which optimizations make a
significant impact, and how much time
you’re willing to spend on each site.
Quick and Easy Fixes
• Always use JPG for photos.
• Install Smush WP or “Compress JPEG & PNG
images” plugin - Let it compress your whole media
library, and each new image when uploaded.
• Install Autoptimize plugin - Turn on HTML, JS, CSS
compression. If nothing breaks, you’re good.
• Install RICG Responsive Images plugin - If nothing
breaks, you’re good.
• If you don’t already have a caching plugin, install
W3 Total Cache - If nothing breaks, you’re good.
Review
More Complicated Fixes
• Add image thumbnail sizes for Responsive Images
plugin to use.
• Write templates with custom img “sizes” attributes to
load exactly the size of responsive image you need.
• Set up a CDN - CloudFlare isn’t too hard, but requires
changing name servers, records.
• Move your site to a better web host.
Review
Learn More About Website
Optimization
Load your page in Google PageSpeed
Insights, then dig through the
recommendations
https://developers.google.com/speed/pagespeed/insights/
Load your page in YSlow
(Chrome/Firefox plugin) then dig through
the recommendations
http://yslow.org
Where to Find Me
@stephenjbell
stephen@steedokc.com
steedokc.com
Download this presentation:
http://www.steedokc.com/wordpress-optimization/

More Related Content

What's hot

Squeeze Maximum Performance From Your Joomla Website
Squeeze Maximum Performance From Your Joomla WebsiteSqueeze Maximum Performance From Your Joomla Website
Squeeze Maximum Performance From Your Joomla WebsiteSiteGround.com
 
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin Thomas
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin ThomasCtrl+F5 Bangalore 2017: Super charge you word press website by Justin Thomas
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin ThomasResellerClub
 
Cache is keeping you from reaching the full potential as a developer (word ca...
Cache is keeping you from reaching the full potential as a developer (word ca...Cache is keeping you from reaching the full potential as a developer (word ca...
Cache is keeping you from reaching the full potential as a developer (word ca...Thomas Audunhus
 
The Power of a Video Library - WordCamp Raleigh
The  Power of a Video Library - WordCamp RaleighThe  Power of a Video Library - WordCamp Raleigh
The Power of a Video Library - WordCamp RaleighLauren Jeffcoat
 
Measuring Web Performance
Measuring Web Performance Measuring Web Performance
Measuring Web Performance Dave Olsen
 
Speed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesSpeed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesMeagan Hanes
 
Speed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceSpeed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceJoomlaDay Australia
 
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)Adam Dunford
 
10 Things You Can Do to Speed Up Your Web App Today
10 Things You Can Do to Speed Up Your Web App Today10 Things You Can Do to Speed Up Your Web App Today
10 Things You Can Do to Speed Up Your Web App TodayChris Love
 
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will come
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will comeHigher Ed Web 2013 presentation - Field of Dreams, build it and they will come
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will comePromet Source
 
Website speed optimization guide for technically advanced webmasters
Website speed optimization guide for technically advanced webmastersWebsite speed optimization guide for technically advanced webmasters
Website speed optimization guide for technically advanced webmastersAditya Singh
 
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...Devin Walker
 
Single page applications the basics
Single page applications the basicsSingle page applications the basics
Single page applications the basicsChris Love
 
Introduction to WordPress Security
Introduction to WordPress SecurityIntroduction to WordPress Security
Introduction to WordPress SecurityNile Flores
 
Front End page speed performance improvements for Drupal
Front End page speed performance improvements for DrupalFront End page speed performance improvements for Drupal
Front End page speed performance improvements for DrupalAndy Kucharski
 
WordPress SEO Site Optimization Strategies & Techniques
WordPress SEO Site Optimization Strategies & TechniquesWordPress SEO Site Optimization Strategies & Techniques
WordPress SEO Site Optimization Strategies & TechniquesJeff Kemp
 
Developing High Performance Web Apps - CodeMash 2011
Developing High Performance Web Apps - CodeMash 2011Developing High Performance Web Apps - CodeMash 2011
Developing High Performance Web Apps - CodeMash 2011Timothy Fisher
 

What's hot (20)

Squeeze Maximum Performance From Your Joomla Website
Squeeze Maximum Performance From Your Joomla WebsiteSqueeze Maximum Performance From Your Joomla Website
Squeeze Maximum Performance From Your Joomla Website
 
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin Thomas
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin ThomasCtrl+F5 Bangalore 2017: Super charge you word press website by Justin Thomas
Ctrl+F5 Bangalore 2017: Super charge you word press website by Justin Thomas
 
Speed!
Speed!Speed!
Speed!
 
Cache is keeping you from reaching the full potential as a developer (word ca...
Cache is keeping you from reaching the full potential as a developer (word ca...Cache is keeping you from reaching the full potential as a developer (word ca...
Cache is keeping you from reaching the full potential as a developer (word ca...
 
The Power of a Video Library - WordCamp Raleigh
The  Power of a Video Library - WordCamp RaleighThe  Power of a Video Library - WordCamp Raleigh
The Power of a Video Library - WordCamp Raleigh
 
Measuring Web Performance
Measuring Web Performance Measuring Web Performance
Measuring Web Performance
 
Speed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan HanesSpeed up your site! #wcmtl2015 by Meagan Hanes
Speed up your site! #wcmtl2015 by Meagan Hanes
 
Speed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate PerformanceSpeed up Your Joomla Site for Ultimate Performance
Speed up Your Joomla Site for Ultimate Performance
 
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)
Does This Theme Make My Website Look Fat? (Wordcamp SLC 2013)
 
10 Things You Can Do to Speed Up Your Web App Today
10 Things You Can Do to Speed Up Your Web App Today10 Things You Can Do to Speed Up Your Web App Today
10 Things You Can Do to Speed Up Your Web App Today
 
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will come
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will comeHigher Ed Web 2013 presentation - Field of Dreams, build it and they will come
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will come
 
Web performance
Web performanceWeb performance
Web performance
 
Website speed optimization guide for technically advanced webmasters
Website speed optimization guide for technically advanced webmastersWebsite speed optimization guide for technically advanced webmasters
Website speed optimization guide for technically advanced webmasters
 
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
Need for Speed: Website Edition – Website Optimization Tools and Techniques P...
 
Single page applications the basics
Single page applications the basicsSingle page applications the basics
Single page applications the basics
 
Introduction to WordPress Security
Introduction to WordPress SecurityIntroduction to WordPress Security
Introduction to WordPress Security
 
Front End page speed performance improvements for Drupal
Front End page speed performance improvements for DrupalFront End page speed performance improvements for Drupal
Front End page speed performance improvements for Drupal
 
Managed WordPress Demystified
Managed WordPress DemystifiedManaged WordPress Demystified
Managed WordPress Demystified
 
WordPress SEO Site Optimization Strategies & Techniques
WordPress SEO Site Optimization Strategies & TechniquesWordPress SEO Site Optimization Strategies & Techniques
WordPress SEO Site Optimization Strategies & Techniques
 
Developing High Performance Web Apps - CodeMash 2011
Developing High Performance Web Apps - CodeMash 2011Developing High Performance Web Apps - CodeMash 2011
Developing High Performance Web Apps - CodeMash 2011
 

Viewers also liked

Movimiento por la paz con justicia y dignidad
Movimiento por la paz con justicia y dignidadMovimiento por la paz con justicia y dignidad
Movimiento por la paz con justicia y dignidadlunacat97
 
Toryvis Project
Toryvis ProjectToryvis Project
Toryvis ProjectVladucu90
 
день захисника вітчизни
день захисника вітчизнидень захисника вітчизни
день захисника вітчизниTeslevych
 
ад прадзядаў спакон вякоў
ад прадзядаў спакон вякоўад прадзядаў спакон вякоў
ад прадзядаў спакон вякоўolia-1989128
 
CU Alliance RPL e-Portfolio_Assessment Tool
CU Alliance RPL e-Portfolio_Assessment Tool CU Alliance RPL e-Portfolio_Assessment Tool
CU Alliance RPL e-Portfolio_Assessment Tool Gavin Clinch
 
تطبيقات كيمياء الأسطح
تطبيقات كيمياء الأسطحتطبيقات كيمياء الأسطح
تطبيقات كيمياء الأسطحMohamed Alashram
 

Viewers also liked (7)

Movimiento por la paz con justicia y dignidad
Movimiento por la paz con justicia y dignidadMovimiento por la paz con justicia y dignidad
Movimiento por la paz con justicia y dignidad
 
Toryvis Project
Toryvis ProjectToryvis Project
Toryvis Project
 
день захисника вітчизни
день захисника вітчизнидень захисника вітчизни
день захисника вітчизни
 
Savana – 1ºA
Savana – 1ºASavana – 1ºA
Savana – 1ºA
 
ад прадзядаў спакон вякоў
ад прадзядаў спакон вякоўад прадзядаў спакон вякоў
ад прадзядаў спакон вякоў
 
CU Alliance RPL e-Portfolio_Assessment Tool
CU Alliance RPL e-Portfolio_Assessment Tool CU Alliance RPL e-Portfolio_Assessment Tool
CU Alliance RPL e-Portfolio_Assessment Tool
 
تطبيقات كيمياء الأسطح
تطبيقات كيمياء الأسطحتطبيقات كيمياء الأسطح
تطبيقات كيمياء الأسطح
 

Similar to Optimizing Your WordPress Site: Why speed matters, and how to get there

WebHosting Performance / WordPress - Pubcon Vegas - Hendison
WebHosting Performance / WordPress  - Pubcon Vegas - HendisonWebHosting Performance / WordPress  - Pubcon Vegas - Hendison
WebHosting Performance / WordPress - Pubcon Vegas - HendisonSearch Commander, Inc.
 
Introduction to Optimizing WordPress for Website Speed
Introduction to Optimizing WordPress for Website SpeedIntroduction to Optimizing WordPress for Website Speed
Introduction to Optimizing WordPress for Website SpeedNile Flores
 
Website Performance
Website PerformanceWebsite Performance
Website PerformanceHugo Fonseca
 
10 Tips for Optimising WordPress
10 Tips for Optimising WordPress10 Tips for Optimising WordPress
10 Tips for Optimising WordPressAndrew Marks
 
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdf
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdfGuide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdf
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdfpersuebusiness
 
Speeding Up WordPress sites
Speeding Up WordPress sitesSpeeding Up WordPress sites
Speeding Up WordPress sitesJason Yingling
 
How To Make Your Wordpress Website Load Faster - 20 Tips
How To Make Your Wordpress Website Load Faster - 20 TipsHow To Make Your Wordpress Website Load Faster - 20 Tips
How To Make Your Wordpress Website Load Faster - 20 TipsWorkurious
 
Optimizing your WordPress website
Optimizing your WordPress websiteOptimizing your WordPress website
Optimizing your WordPress websitemwfordesigns
 
How to make WordPress Faster in 2019
How to make WordPress Faster in 2019How to make WordPress Faster in 2019
How to make WordPress Faster in 2019Dan Bochichio
 
Lazy load Website Assets
Lazy load Website AssetsLazy load Website Assets
Lazy load Website AssetsChris Love
 
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014Bastian Grimm
 
10 things to do to speed up your site
10 things to do to speed up your site10 things to do to speed up your site
10 things to do to speed up your siteIndigo Tree Digital
 
Speed Up WordPress Websites - Part 1 - WordPress Cairo Meetup
Speed Up WordPress Websites - Part 1 - WordPress Cairo MeetupSpeed Up WordPress Websites - Part 1 - WordPress Cairo Meetup
Speed Up WordPress Websites - Part 1 - WordPress Cairo MeetupAhmed Mohammed Nagdy
 
Life in the Fast Lane: Speed, Usability & Search Engine Optimization
Life in the Fast Lane: Speed, Usability & Search Engine OptimizationLife in the Fast Lane: Speed, Usability & Search Engine Optimization
Life in the Fast Lane: Speed, Usability & Search Engine OptimizationDana DiTomaso
 
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...Otto Kekäläinen
 
Why your slow loading website is costing you sales and how to fix it
Why your slow loading website is costing you sales and how to fix itWhy your slow loading website is costing you sales and how to fix it
Why your slow loading website is costing you sales and how to fix itstrommen
 

Similar to Optimizing Your WordPress Site: Why speed matters, and how to get there (20)

WordPress optimization
WordPress optimizationWordPress optimization
WordPress optimization
 
WebHosting Performance / WordPress - Pubcon Vegas - Hendison
WebHosting Performance / WordPress  - Pubcon Vegas - HendisonWebHosting Performance / WordPress  - Pubcon Vegas - Hendison
WebHosting Performance / WordPress - Pubcon Vegas - Hendison
 
Introduction to Optimizing WordPress for Website Speed
Introduction to Optimizing WordPress for Website SpeedIntroduction to Optimizing WordPress for Website Speed
Introduction to Optimizing WordPress for Website Speed
 
Website Performance
Website PerformanceWebsite Performance
Website Performance
 
23 Ways To Speed Up WordPress
23 Ways To Speed Up WordPress23 Ways To Speed Up WordPress
23 Ways To Speed Up WordPress
 
10 Tips for Optimising WordPress
10 Tips for Optimising WordPress10 Tips for Optimising WordPress
10 Tips for Optimising WordPress
 
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdf
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdfGuide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdf
Guide 4 - How To Dramatically Speed Up Your Website Using A Caching Plugin.pdf
 
Speeding Up WordPress sites
Speeding Up WordPress sitesSpeeding Up WordPress sites
Speeding Up WordPress sites
 
Caching 101
Caching 101Caching 101
Caching 101
 
How To Make Your Wordpress Website Load Faster - 20 Tips
How To Make Your Wordpress Website Load Faster - 20 TipsHow To Make Your Wordpress Website Load Faster - 20 Tips
How To Make Your Wordpress Website Load Faster - 20 Tips
 
Optimizing your WordPress website
Optimizing your WordPress websiteOptimizing your WordPress website
Optimizing your WordPress website
 
How to make WordPress Faster in 2019
How to make WordPress Faster in 2019How to make WordPress Faster in 2019
How to make WordPress Faster in 2019
 
Lazy load Website Assets
Lazy load Website AssetsLazy load Website Assets
Lazy load Website Assets
 
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
The Need for Speed (5 Performance Optimization Tipps) - brightonSEO 2014
 
10 things to do to speed up your site
10 things to do to speed up your site10 things to do to speed up your site
10 things to do to speed up your site
 
Speed Up WordPress Websites - Part 1 - WordPress Cairo Meetup
Speed Up WordPress Websites - Part 1 - WordPress Cairo MeetupSpeed Up WordPress Websites - Part 1 - WordPress Cairo Meetup
Speed Up WordPress Websites - Part 1 - WordPress Cairo Meetup
 
Life in the Fast Lane: Speed, Usability & Search Engine Optimization
Life in the Fast Lane: Speed, Usability & Search Engine OptimizationLife in the Fast Lane: Speed, Usability & Search Engine Optimization
Life in the Fast Lane: Speed, Usability & Search Engine Optimization
 
Show Me The Cache!
Show Me The Cache!Show Me The Cache!
Show Me The Cache!
 
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...The 5 most common reasons for a slow WordPress site and how to fix them – ext...
The 5 most common reasons for a slow WordPress site and how to fix them – ext...
 
Why your slow loading website is costing you sales and how to fix it
Why your slow loading website is costing you sales and how to fix itWhy your slow loading website is costing you sales and how to fix it
Why your slow loading website is costing you sales and how to fix it
 

Recently uploaded

Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceSohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceDamini Dixit
 
Famedesired Project portfolio1 . Fullsail
Famedesired Project portfolio1 . FullsailFamedesired Project portfolio1 . Fullsail
Famedesired Project portfolio1 . Fullsailfergusonamani
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
NEON LIGHT CITY pitch deck for the new PC game
NEON LIGHT CITY pitch deck for the new PC gameNEON LIGHT CITY pitch deck for the new PC game
NEON LIGHT CITY pitch deck for the new PC gametess51
 
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceSangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verified
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verifiedKarol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verified
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceTirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceLucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...StartupSprouts.in
 
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdf
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdfEnabling Business Users to Interpret Data Through Self-Service Analytics (2).pdf
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdfSmartinfologiks
 
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...ZurliaSoop
 
Dive into Angel Investing s 2024 0502.pptx
Dive into Angel Investing s 2024 0502.pptxDive into Angel Investing s 2024 0502.pptx
Dive into Angel Investing s 2024 0502.pptxElaine Werffeli
 
Dàni Velvet Personal Brand Exploration (1).pptx
Dàni Velvet Personal Brand Exploration (1).pptxDàni Velvet Personal Brand Exploration (1).pptx
Dàni Velvet Personal Brand Exploration (1).pptxdmtillman
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893Health
 
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.in
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.inEV Electric Vehicle Startup Pitch Deck- StartupSprouts.in
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.inStartupSprouts.in
 
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceHyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka
call Now 9811711561 Cash Payment乂 Call Girls in Dwarkacall Now 9811711561 Cash Payment乂 Call Girls in Dwarka
call Now 9811711561 Cash Payment乂 Call Girls in Dwarkavikas rana
 
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...Escorts service
 

Recently uploaded (20)

Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceSohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Sohna Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
 
Famedesired Project portfolio1 . Fullsail
Famedesired Project portfolio1 . FullsailFamedesired Project portfolio1 . Fullsail
Famedesired Project portfolio1 . Fullsail
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
NEON LIGHT CITY pitch deck for the new PC game
NEON LIGHT CITY pitch deck for the new PC gameNEON LIGHT CITY pitch deck for the new PC game
NEON LIGHT CITY pitch deck for the new PC game
 
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceSangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Sangareddy Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Dehradun Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verified
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verifiedKarol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verified
Karol Bagh, Delhi Call girls :8448380779 Model Escorts | 100% verified
 
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceTirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Tirupati Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceLucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Lucknow Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...
Shareholders Agreement Template for Compulsorily Convertible Debt Funding- St...
 
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdf
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdfEnabling Business Users to Interpret Data Through Self-Service Analytics (2).pdf
Enabling Business Users to Interpret Data Through Self-Service Analytics (2).pdf
 
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...
Jual Obat Aborsi Bojonegoro ( Asli No.1 ) 085657271886 Obat Penggugur Kandung...
 
Dive into Angel Investing s 2024 0502.pptx
Dive into Angel Investing s 2024 0502.pptxDive into Angel Investing s 2024 0502.pptx
Dive into Angel Investing s 2024 0502.pptx
 
Dàni Velvet Personal Brand Exploration (1).pptx
Dàni Velvet Personal Brand Exploration (1).pptxDàni Velvet Personal Brand Exploration (1).pptx
Dàni Velvet Personal Brand Exploration (1).pptx
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
 
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893
+971565801893>>Safe and original mtp kit for sale in Dubai>>+971565801893
 
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.in
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.inEV Electric Vehicle Startup Pitch Deck- StartupSprouts.in
EV Electric Vehicle Startup Pitch Deck- StartupSprouts.in
 
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceHyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Hyderabad Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka
call Now 9811711561 Cash Payment乂 Call Girls in Dwarkacall Now 9811711561 Cash Payment乂 Call Girls in Dwarka
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka
 
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...
JAIPUR CALL GIRLS SERVICE REAL HOT SEXY 👯 CALL GIRLS IN JAIPUR BOOK YOUR DREA...
 

Optimizing Your WordPress Site: Why speed matters, and how to get there

  • 1. Optimizing Your WordPress SiteWhy speed matters, and how to get there Stephen Bell Steed Interactive
  • 2. Stephen Bell • Worked in web marketing at Oklahoma Christian University for 10 years • Started design and web development company with my wife this year steedokc.com About Me
  • 5. https://blog.kissmetrics.com/loading-time/ (2011) “A one-second delay in page response can result in a 7% reduction in conversions." More Interactions & Purchases
  • 6. https://blog.kissmetrics.com/loading-time/ (2011) “47% of consumers expect a web page to load in 2 seconds or less.” Visitor Expectations
  • 7. https://moz.com/learn/seo/page-speed “Google has indicated site speed is one of the signals used by its algorithm to rank pages.” Google Search Results Ranking “A slow page speed means that search engines can crawl fewer pages using their allocated crawl budget.”
  • 8. How Fast is My Site? (Aim for less than 3 seconds)
  • 9. tools.pingdom.com - Select a US city under “Settings” Note: This only shows you your site speed on a very fast connection. To test different speeds on your own computer, learn about Chrome Developer Tools.
  • 10. 1. Load smaller things 2. Load fewer things 3. Load closer things 4. Cache things (save completed pieces for later) 5. Load the important things first 6. Get a faster server Ways of Improving Site Speed
  • 11. • JPG - Photos, scanned drawings or art • PNG - Images with solid colors, simple gradients • SVG - Logos saved as paths instead of pixels • GIF - Funny animated things When in doubt, use JPG! Load smaller things Use the Right Image File Type
  • 12. PNG 664 KB Load smaller things Use the Right Image File Type JPG (80% quality) 157 KB Don’t use PNG for photos! They take up 4X as much space!
  • 13. • Get a WordPress plugin that recompresses images as they’re uploaded (40-50% off of each image, with no visible loss of quality) • “Compress JPEG & PNG images” (TinyPNG) Free for up to 500 images/month https://wordpress.org/plugins/tiny-compress-images/ • “WP Smush” • Free, with premium version available https://wordpress.org/plugins/wp-smushit/ Load smaller things Recompress Images with WP Plugins
  • 14. Load smaller things Responsive Images 2560px wide 640px wide • Give people the correct image size for the browser/device they’re using
  • 15. Load smaller things Responsive Images <img src="image.jpg" width="800" height="600" srcset="image-400x300.jpg 400w, image-600x450.jpg 600w, image.jpg 1000w" sizes="(min-width:1024px) 33.3vw, (min-width:640px) 50vw, 100vw" > • srcset - These are the images that are available, and their sizes. • sizes - These are the rules that tell the browser which image to pick. • Code example: Steed site (portfolio)
  • 16. Load smaller things Responsive Images • RICG Responsive Images plugin https://wordpress.org/plugins/ricg-responsive-images/ • “Bringing automatic default responsive images to WordPress.” • Automatically adds simple “srcset” and “sizes” to images in your posts. • Keeps images in your posts from being higher resolution than your browser width. • You still need to add new image thumbnail sizes to WordPress to make sure they’re available. • If you’re making templates yourself, plugin gives you functions, lets you write your own “sizes” for better fitting images.
  • 17. Load smaller things Turn on GZIP • Similar to “zipping” a file, the server compresses text files as they’re sent out. • Can be turned on by editing settings files, or done with a plugin like W3 Total Cache. http://softstribe.com/wordpress/enable-gzip-compression-in-wordpress
  • 18. Load fewer things Minify and Combine CSS & JavaScript • Every extra file you ask the server for makes things just a little bit slower • Whitespace (extra spaces, tabs, line breaks) and comments aren’t useful to visitor, make the page load slower • “Minifying” removes unnecessary code and combines files
  • 19. Load fewer things Minify and Combine CSS & JavaScript • WordPress Plugin: “Autoptimize” https://wordpress.org/plugins/autoptimize/ • Minifies CSS, JS and HTML • Combines CSS files together, JS files together • Typically, just install it, check boxes, and it works
  • 20. Load fewer things Get Rid of Things You Don’t Need • Prioritize what you need and don’t need on your pages • Social sharing buttons? • Big web fonts? • Video embeds? • Unnecessary tracking code? • Complex advertising network code?
  • 21. Load closer things Content Delivery Network • If your visitor is in a different part of the world than your web hosting, it takes longer to get to them. • A Content Delivery Network (CDN) saves your files on different computers around the world to speed things up.
  • 22. Load closer things Content Delivery Network • Free service that sits between your domain name server and your hosting server • Automatically saves all your images, static pages to a CDN • Bonus: A bit of extra security Another option: JetPack plugin - Photon https://developer.wordpress.com/docs/photon/ https://www.cloudflare.com
  • 23. Cache things Turn on Server-Side Caching • WordPress assembles your page each time someone visits it. It makes your page out of database information, PHP files, and outside sources, which takes time. • When you “cache,” you’re pre-assembling your page code to be handed off to your visitor • Caching can happen on multiple levels: • Your web host (i.e. SiteGround Super Cacher) • As a plugin in your WordPress (i.e. W3 Total Cache) • On another server (i.e. CloudFlare)
  • 24. Cache things Turn on Server-Side Caching • W3 Total Cache https://wordpress.org/plugins/w3-total-cache/ • Be sure to enable “page cache”
  • 25. Load the Important Things First Prioritize “Above the Fold” Content • “Lazy load” images - Stops images from loading until you actually get to them on the page http://www.elegantthemes.com/blog/tips-tricks/how-to-add-lazy-loading-to-wordpress • “Critical path” CSS - Load the CSS for the top of the page inline first, separately from all the other CSS, which gets loaded at the bottom https://developers.google.com/web/fundamentals/performance/critical-rendering-path/ • Autoptimize plugin can do this, but doesn’t let you do different CSS for each page
  • 26. Get a Faster Server Use a Reputable Host • Sometimes your site is slow because your web host is slow. Greedy companies try to cram too many sites, too much traffic on their servers. • Reputable, fast hosts that people keep telling me about: siteground.com asmallorange.com wpengine.com
  • 27. Get a Faster Server Use a Reputable Host • A list of web site hosts, arranged by what percentage of people say positive or negative things about them on Twitter: http://reviewsignal.com/webhosting/compare/
  • 28. Case Study: Splendry.com • Before: • Problem: 15-30 second delay before page starts loading • Page loads in 8.5 seconds • Page weight: 4.5 MB • Now: • No noticeable delay • Page loads in 1.5 seconds • Page weight: 1.2 MB
  • 29. Case Study: Splendry.com • What we did (in order of loading time importance): • Moved from GoDaddy to SiteGround • Change all PNG photos to JPGs • Smush WP plugin • SuperCacher (SiteGround) and W3 Total Cache plugins • Autoptimize plugin • CloudFlare • Other small tweaks
  • 30. You Can’t Fix Everything It’s up to you which optimizations make a significant impact, and how much time you’re willing to spend on each site.
  • 31. Quick and Easy Fixes • Always use JPG for photos. • Install Smush WP or “Compress JPEG & PNG images” plugin - Let it compress your whole media library, and each new image when uploaded. • Install Autoptimize plugin - Turn on HTML, JS, CSS compression. If nothing breaks, you’re good. • Install RICG Responsive Images plugin - If nothing breaks, you’re good. • If you don’t already have a caching plugin, install W3 Total Cache - If nothing breaks, you’re good. Review
  • 32. More Complicated Fixes • Add image thumbnail sizes for Responsive Images plugin to use. • Write templates with custom img “sizes” attributes to load exactly the size of responsive image you need. • Set up a CDN - CloudFlare isn’t too hard, but requires changing name servers, records. • Move your site to a better web host. Review
  • 33. Learn More About Website Optimization Load your page in Google PageSpeed Insights, then dig through the recommendations https://developers.google.com/speed/pagespeed/insights/ Load your page in YSlow (Chrome/Firefox plugin) then dig through the recommendations http://yslow.org
  • 34. Where to Find Me @stephenjbell stephen@steedokc.com steedokc.com Download this presentation: http://www.steedokc.com/wordpress-optimization/

Editor's Notes

  1. Break this down by what each of these is doing.