How to Make Fewer HTTP Requests on WordPress & Speed Up Your Site
Suggested read: Server Cache vs. Browser Cache vs. Site Cache: What’s the Difference?These optimizations only go so far without a fast, reliable server.// Disable emojis remove_action( ‘wp_head’, ‘print_emoji_detection_script’, 7 ); remove_action( ‘wp_print_styles’, ‘print_emoji_styles’ ); // Disable oEmbeds remove_action( ‘wp_head’, ‘wp_oembed_add_discovery_links’ ); remove_action( ‘wp_head’, ‘wp_oembed_add_host_js’ ); Create SVG…
