Hi Friends, today I am going to share a very useful snippet to improve your websites performance and decrease the page loading time.
To decrease the page loading tine, you should also include all your scripts and CSS files in the footer. In this tutorial, I will share how to force all scripts into wp_footer() in WordPress sites.
Copy and paste the below code code inside your theme’s functions.php file.
1 2 3 4 5 6 7 8 9 10 | //check is admin page if(!is_admin()){ remove_action('wp_head', 'wp_print_scripts'); remove_action('wp_head', 'wp_print_head_scripts', 9); remove_action('wp_head', 'wp_enqueue_scripts', 1); add_action('wp_footer', 'wp_print_scripts', 5); add_action('wp_footer', 'wp_enqueue_scripts', 5); add_action('wp_footer', 'wp_print_head_scripts', 5); } |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.