1. <?php
  2. /**
  3. * Leaf add functions and definitions.
  4. *
  5. * @since Leaf 1.0
  6. */
  7.  
  8. /* load theme functions. */
  9. require( get_template_directory() . '/includes/theme-functions.php' );
  10.  
  11. /* Add theme options. */
  12. require( get_template_directory() . '/includes/admin/theme-options.php' );
  13.  
  14. /* Custom template tags for this theme. */
  15. require( get_template_directory() . '/includes/template-tags.php' );
  16.  
  17. /* Add support for a custom header image. */
  18. require( get_template_directory() . '/includes/custom-header.php' );
  19.  
  20. /* Add theme plugins. */
  21. require( get_template_directory() . '/includes/theme-plugins.php' );
  22.  
  23. /* Custom action hooks for this theme. */
  24. require( get_template_directory() . '/includes/hooks.php' );
  25.  
  26. /* Add contextual help. */
  27. require( get_template_directory() . '/includes/admin/help.php' );