How to Properly Add JavaScripts and Styles in WordPress How to Properly Add JavaScripts and Styles in WordPress Do you want to learn how to properly add JavaScripts and CSS stylesheets in WordPress? Many DIY users often make the mistake of directly calling their scripts and stylesheets in plugins and themes. In this article, we will show you how to properly add JavaScripts and stylesheet in WordPress. This will be particularly useful for those who are just starting to learn WordPress theme and plugin development. Development
Remove Query Strings in WordPress CSS styles and JS Scripts When you’re optimizing your website, you’ve probably noticed a page speed score telling you to remove query strings from your CSS and JavaScript files in WordPress. Query strings are URLs that have either ? or &. But why do these appear in the URLs and what’s the cause? Actually query strings are used by plugin developers to push updates. The static resources (like CSS and JS files) are usually cached by proxy servers or CDNs. Development