1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-26 00:21:04 +03:00

Add load_plugin_textdomain

If there is no `load_plugin_textdomain` then the translations will not be loaded from the languages folder.
This commit is contained in:
Ulrich Pogson 2013-11-22 22:54:43 +01:00
parent 65d9e76aac
commit 09a565b1b5

View file

@ -257,6 +257,7 @@ class Plugin_Name {
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
load_plugin_textdomain( $domain, FALSE, basename( plugin_dir_path( dirname( __FILE__ ) ) ) . '/languages/' );
}