WordPress and PageSpeed Insights

Today i tested my WordPress Theme on Google’s PageSpeed Insights. The result was a little disapointing. The Desktop version scored above 90 out of 100, but the mobile version scored around 80. Based on Google’s suggestions i searched for some solutions. Eliminate render-blocking JavaScript and CSS in above-the-fold content Due to my own plugin Wp
Continue reading: WordPress and PageSpeed Insights

WordPress Development: Properly load your Javascript and set dependency

Theme and Plugin developers should wp_enqueue_script() to load the Javascript sources used in their code. Why should you enqueue? In the first place you should prevent conflict between your scripts. Secondly you should only load the resources you need per page. Load the right scripts only will reduce your load time. WordPress offers a list of
Continue reading: WordPress Development: Properly load your Javascript and set dependency