Guest User

Untitled

a guest
Dec 12th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. /* Async and defer script */
  3. function my_theme_async_defer_script( $tag , $handle , $src )
  4. {
  5. $async = ( $handle == 'my-theme-scripts' ) ? 'async defer src' : 'src';
  6. return str_replace( "src" , $async , $tag );
  7. }
  8.  
  9. add_action( 'script_loader_tag' , 'my_theme_async_defer_script' , 10 , 4 );
  10. ?>
Add Comment
Please, Sign In to add comment