block.php 812 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. * Name: Giphy
  4. * Section: content
  5. * Description: Add a Giphy image
  6. *
  7. */
  8. /* @var $options array */
  9. /* @var $wpdb wpdb */
  10. $default_options = array(
  11. 'view'=>'View online',
  12. 'text'=>'Few words summary',
  13. 'block_background'=>'#ffffff',
  14. 'font_family'=>$font_family,
  15. 'font_size'=>13,
  16. 'color'=>'#999999',
  17. 'block_padding_top'=>15,
  18. 'block_padding_bottom'=>15,
  19. 'block_padding_left'=>0,
  20. 'block_padding_right'=>0
  21. );
  22. $options = array_merge($default_options, $options);
  23. ?>
  24. <table width="100%" border="0" cellpadding="0" align="center" cellspacing="0">
  25. <tr>
  26. <td width="100%" valign="top" align="center">
  27. <img src="<?php echo $options['giphy_url'] ?>" style="max-width: 100%!important; height: auto!important;" />
  28. </td>
  29. </tr>
  30. </table>