You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add async and defer to javascript file only for Homepage
*/
function yasglobal_defer_javascripts( $url ) {
if ( ! is_front_page() ) return $url; // check the the page is front or not.
if ( strpos( $url, '.js' ) === false || strpos( $url, 'main.min.js' ) === false ) return $url; // Check file type and specific file. If the file type is something else rather than .js or if this a specified JS File then return the same URL Otherwise add async in it.