Text of WordCamp Finland 2015, Page performance optimization
1. 1998 PhotoSpin
2. Average page is 1795 KB in size and growing
3. WordPress sites are worse
4. In Finland: WordPress sites average 2,5 MB
5. Page size matters
6. Page size does not matter (that much)
7. Page size page performance
8. Page performance server-side performance
9. PRACTICAL TIPS
10. Optimize images
11. Optimize images for users automatically
12. Never use the original sizes of uploaded images
13. Prevent users using the full size image
14. There is a lter for that function
h1_remove_full_image_size( $sizes ) { unset( $sizes['full'] );
return $sizes; } add_filter( 'image_size_names_choose',
'h1_remove_full_image_size' );