- availability:
-
WPML Version: 3.2.1
- description:
-
- To make sure a WPML Translation Management dependent code is executed at the right time, this code should be hooked into the
wpml_tm_loaded
action. This action is called after WPML Translation Management is fully configured and loaded. - If we do not hook into this
wpml_tm_loaded
, sometimes the WPML Translation Management dependent code might be called too early. Then even if WPML Translation Management is active and configured, we may not get expected results. wpml_tm_loaded
is executed during the plugins_loaded and wpml_loaded actions.- There is a similar hook for WPML Translation Management wpml_st_loaded.
- To make sure a WPML Translation Management dependent code is executed at the right time, this code should be hooked into the
- type:
- action
- category:
- Miscellaneous
- parameters:
-
add_action( 'wpml_tm_loaded', callable $function_to_add );
- $function_to_add
- (callable) (Required) Your callback to be run when the filter is applied.
- hook example usage:
-
Example
function my_plugin_wpml_tm_code() { // Run WPML Translation Management dependent actions // These actions will be executed right after WPML Translation Management is fully configured and loaded. } add_action( 'wpml_tm_loaded', 'my_plugin_wpml_tm_code' );