Advertisement
Guest User

Untitled

a guest
May 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // preload css in wordpress
  2. // add this code in child theme function.php
  3. add_filter( 'style_loader_tag', 'preload_css', 10, 2 );
  4.  
  5. function preload_css( $html, $handle ){
  6.  
  7. $targetHanlde = array('zuhaus_mikado_child_style');
  8.  
  9. if( in_array( $handle, $targetHanlde ) ){
  10.  
  11. $html = str_replace("rel='stylesheet'", "rel='preload'", $html);
  12. }
  13.  
  14. return $html;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement