Guest User

Untitled

a guest
May 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. $icon = get_sub_field( 'law_icon_social' );
  3. if ( !empty( $icon ) ):
  4. $url = $icon['url'] ;
  5. $ext = pathinfo( $url, PATHINFO_EXTENSION );
  6. if ( $ext == 'svg' ):
  7. echo file_get_contents( $url ) ;
  8. else: ?>
  9. <img src="<?php echo $url; ?>" alt="<?php echo $alt; ?>">
  10.  
  11. <?php endif;
  12. endif; ?>
  13.  
  14.  
  15. //// CSS
  16. path {
  17. fill: #3a4297;
  18. }
Add Comment
Please, Sign In to add comment