HOME


Mini Shell 1.0
DIR: /home/otwalrll/.trash/wp-content.1/plugins/newsletter/emails/blocks/giphy/
Upload File :
Current File : /home/otwalrll/.trash/wp-content.1/plugins/newsletter/emails/blocks/giphy/block.php
<?php
/*
 * Name: Giphy
 * Section: content
 * Description: Add a Giphy image
 *
 */

/* @var $options array */
/* @var $wpdb wpdb */

$defaults = array(
    'block_padding_top'=>15,
    'block_padding_bottom'=>15,
    'block_padding_left'=>0,
    'block_padding_right'=>0,
    'block_background'=>'',
    'giphy_url' => ''
);

$options = array_merge($defaults, $options);

?>
<style>
    .image {
        display: inline-block;
        max-width: 100%!important;
        height: auto!important;
        font-size: 0;
    }
</style>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="responsive" role="presentation">
    <tr>
        <td align="center">
            <img src="<?php echo esc_attr($options['giphy_url']) ?>" inline-class="image">
        </td>
    </tr>
</table>