Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template: Feature Box
  4. *
  5. * @package WPCasa London
  6. *
  7. * The variables $args and when used
  8. * in widget also $widget_args are available.
  9. */
  10. $full_width = isset( $widget_args['id'] ) && in_array( $widget_args['id'], array( 'header-full', 'footer-full' ) ) ? true : false; ?>
  11.  
  12. <a href="<?php echo $args['link_url']?>"> <div class="wpsight-feature-box">
  13. <?php if( $full_width ) : ?><div class="container"><?php endif; ?>
  14. <div class="wpsight-feature-box-inner">
  15.  
  16. <div class="feature-box-icon">
  17. <i class="<?php echo esc_attr( $args['icon_class'] ); ?>"></i>
  18. </div>
  19.  
  20. <div class="feature-box-info equal">
  21.  
  22. <?php if( $args['title'] ) : ?>
  23. <h4 class="feature-box-title"><?php echo strip_tags( $args['title'] ); ?></h4>
  24. <?php endif; ?>
  25.  
  26. <?php echo wpsight_format_content( wp_kses_post( $args['description'] ) ); ?>
  27.  
  28. <?php if( $args['link_text'] && $args['link_url'] ) : ?>
  29. <div class="feature-box-link">
  30. <a href="<?php echo esc_url( $args['link_url'] ); ?>" <?php if( $args['link_blank'] ) echo ' target="_blank"'; ?>><?php echo strip_tags( $args['link_text'] ); ?></a>
  31. </div>
  32. <?php endif; ?>
  33.  
  34. </div>
  35.  
  36. </div>
  37. <?php if( $full_width ) : ?></div><!-- .container --><?php endif; ?>
  38. </div><!-- .wpsight-feature-box -->
  39. </a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement