%s

', esc_html( initiator_compatibility_check() ) ); } /** * 2.0 - Load Theme Setup */ function initiator_load_theme_setup() { /** * The load_theme_textdomain( 'auspicious' );. This should translate all translation in the theme. If there is a * second text-domain, it should ignore since translation only takes the primary text domain. */ load_theme_textdomain( 'auspicious' ); } add_action( 'after_setup_theme', 'initiator_load_theme_setup' ); /** * 3.0 - Autoload Backrop Core */ if ( file_exists( get_parent_theme_file_path( '/vendor/autoload.php' ) ) ) { require_once get_parent_theme_file_path( '/vendor/autoload.php' ); }