theme-options.php 620 B

12345678910111213141516171819202122
  1. <?php
  2. if (!defined('ABSPATH'))
  3. exit;
  4. ?>
  5. <table class="form-table">
  6. <tr>
  7. <th>Max posts</th>
  8. <td><?php $controls->text('theme_max_posts', 5); ?></td>
  9. </tr>
  10. <tr>
  11. <th>Categories</th>
  12. <td><?php $controls->categories_group('theme_categories'); ?></td>
  13. </tr>
  14. <tr>
  15. <th>Post types</th>
  16. <td>
  17. <?php $controls->post_types('theme_post_types'); ?>
  18. <p class="description">Leave all uncheck for a default behavior.</p>
  19. </td>
  20. </tr>
  21. </table>
  22. <?php include WP_PLUGIN_DIR . '/newsletter/emails/themes/default/social-options.php'; ?>