Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

EPA – Custom theme features

// Register Theme Features
function epa_theme_features()  {

	// Add theme support for Translation
	load_theme_textdomain( 'epa', get_template_directory() . '/language' );
}

// Hook into the 'after_setup_theme' action
add_action( 'after_setup_theme', 'epa_theme_features' );