%s

', esc_html( auspicious_compatibility_check() ) ); } /** * 2.0 - Load Theme Setup */ function auspicious_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', 'auspicious_load_theme_setup' ); function auspicious_theme_setup() { add_theme_support( 'title-tag' ); add_theme_support( 'automatic-feed-links' ); } add_action( 'after_theme_setup', 'auspicious_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' ); }