Skip to content

Instantly share code, notes, and snippets.

@MaximeCulea
Last active September 6, 2017 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaximeCulea/94fef4ad5ba9338e2586f185e8b6a354 to your computer and use it in GitHub Desktop.
Save MaximeCulea/94fef4ad5ba9338e2586f185e8b6a354 to your computer and use it in GitHub Desktop.
i18n ACF
<?php
/**
* Load the theme textdomain
*
* @author Maxime CULEA
*/
public static function mc_load_theme_textdomain() {
load_theme_textdomain( self::textdomain, get_template_directory() . '/languages' );
}
add_filter( 'acf/settings/export_textdomain', 'mc_load_theme_textdomain' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment