uc-embed.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var string $class |
| 4 | * @var string $type |
| 5 | * @var bool|string $unique_service |
| 6 | * @var string $toggle |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div class="<?php echo esc_attr( $class ); ?>" |
| 11 | uc-embed-type="<?php echo esc_attr( $type ); ?>" |
| 12 | <?php if ( $unique_service ) : ?> |
| 13 | uc-embed-service-id="<?php echo esc_attr( $unique_service ); ?>" |
| 14 | <?php endif; ?> |
| 15 | uc-embed-show-toggle="<?php echo esc_attr( $toggle ); ?>" |
| 16 | ></div> |
| 17 |