Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/medicine/public_html/wp-content/plugins/newsletter/emails/blocks/giphy/ |
Upload File : |
<?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>