load_textdomain
Fires before the MO translation file is loaded.
Description
Parameters (2)
- 0. $domain (string)
- Text domain. Unique identifier for retrieving translated strings.
- 1. $mofile (string)
- Path to the .
mo
file.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'load_textdomain', $domain, $mofile );
- The following example is for adding a hook callback.
- // define the load_textdomain callback
- function action_load_textdomain( $domain, $mofile ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'load_textdomain', 'action_load_textdomain', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'load_textdomain', 'action_load_textdomain', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/l10n.php
- do_action( 'load_textdomain', $domain, $mofile );