functions.php 626 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Zeever functions and definitions
  4. *
  5. * @author Jegstudio
  6. * @package zeever
  7. * @since 1.0.0
  8. */
  9. if ( ! defined( 'ABSPATH' ) ) {
  10. exit;
  11. }
  12. defined( 'ZEEVER_VERSION' ) || define( 'ZEEVER_VERSION', '1.0.9' );
  13. defined( 'ZEEVER_DIR' ) || define( 'ZEEVER_DIR', trailingslashit( get_template_directory() ) );
  14. defined( 'ZEEVER_URI' ) || define( 'ZEEVER_URI', trailingslashit( get_template_directory_uri() ) );
  15. require get_parent_theme_file_path( 'inc/autoload.php' );
  16. require get_parent_theme_file_path( 'inc/helper.php' );
  17. require get_parent_theme_file_path( 'inc/wptt-webfont-loader.php' );
  18. Zeever\Init::instance();