WPML
add_action( 'wpml_st_loaded', callable $function_to_add );
Type
action
Category
Miscellaneous
WPML Version
3.2.1

Description

  • To make sure a WPML String Translation dependent code is executed at the right time, this code should be hooked into the wpml_st_loaded action. This action is called after WPML String Translation is fully configured and loaded.
  • If we do not hook into this wpml_st_loaded, sometimes the WPML String Translation dependent code might be called too early. Then even if WPML String Translation is active and configured, we may not get expected results.
  • wpml_st_loaded is executed during the plugins_loaded and wpml_loaded actions.
  • There is a similar hook for WPML Translation Management wpml_tm_loaded.

Arguments

$function_to_add
(callable) (Required) Your callback to be run when the filter is applied.

Example usage

Example
function my_plugin_wpml_st_code() {
  // Run WPML String Translation dependent actions
  // These actions will be executed right after WPML String Translation is fully configured and loaded.
}

add_action( 'wpml_st_loaded', 'my_plugin_wpml_st_code' );

icl_ls_languages, wpml_sync_custom_field_copied_value, wpml_ls_enable_ajax_navigation, wpml_element_type, wpml_setting, wpml_sub_setting, wpml_exclude_post_from_auto_translate, wpml_forms_config_ninja-forms, wpml_forms_config_wpforms, wpml_tf_feedback_open_link

All 30 Miscellaneous hooks →