Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( ! defined( 'FW' ) ) {
- die( 'Forbidden' );
- }
- /**
- * @var array $atts
- */
- ?>
- <?php
- /*
- * `.fw-iconbox` supports 3 styles:
- * `fw-iconbox-1`, `fw-iconbox-2` and `fw-iconbox-3`
- */
- ?>
- <?php
- $custom_class = (isset($atts['custom_class']) && $atts['custom_class']) ? $atts['custom_class'] : '';
- ?>
- <div class="fw-iconbox clearfix <?php esc_attr( $custom_class ); ?> <?php echo esc_attr($atts['style']); ?>">
- <p><?php var_dump($custom_class); ?></p>
- <div class="fw-iconbox-image">
- <i class="<?php echo esc_attr($atts['icon']); ?>"></i>
- </div>
- <div class="fw-iconbox-aside">
- <div class="fw-iconbox-title">
- <h3><?php echo $atts['title']; ?></h3>
- </div>
- <div class="fw-iconbox-text">
- <p><?php echo $atts['content']; ?></p>
- </div>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement