block.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /*
  3. * Name: Heading
  4. * Section: content
  5. * Description: Section title
  6. */
  7. $default_options = array(
  8. 'text' => 'An Awesome Title',
  9. 'align' => 'center',
  10. 'block_background' => '#ffffff',
  11. 'font_family' => $font_family,
  12. 'font_size' => 30,
  13. 'font_color' => '#444444',
  14. 'font_weight' => 'normal',
  15. 'block_padding_left' => 15,
  16. 'block_padding_right' => 15,
  17. 'block_padding_bottom' => 15,
  18. 'block_padding_top' => 15
  19. );
  20. $options = array_merge($default_options, $options);
  21. ?>
  22. <style>
  23. .heading-text {
  24. padding: 10px;
  25. text-align: <?php echo $options['align'] ?>;
  26. font-size: <?php echo $options['font_size'] ?>px;
  27. font-family: <?php echo $options['font_family'] ?>;
  28. font-weight: <?php echo $options['font_weight'] ?>;
  29. color: <?php echo $options['font_color'] ?>;
  30. }
  31. </style>
  32. <table border="0" cellpadding="0" cellspacing="0" width="100%" >
  33. <tr>
  34. <td align="center" class="heading-text">
  35. <?php echo $options['text'] ?>
  36. </td>
  37. </tr>
  38. </table>