You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the release of WordPress 6.7 we have received the below "PHP Notice" in the WordPress Debug logs:
Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>spinupwp</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /sites/ulb25.bitz.li/files/wp-includes/functions.php on line 6114
WordPress recommends using the "init" hook instead of the "plugins_loaded" hook to load text domains. This aligns with WordPress 6.7 requirements, which specify that text domains should only be loaded on init or later.
The text was updated successfully, but these errors were encountered:
Since the release of WordPress 6.7 we have received the below "PHP Notice" in the WordPress Debug logs:
Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>spinupwp</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /sites/ulb25.bitz.li/files/wp-includes/functions.php on line 6114
WordPress recommends using the "init" hook instead of the "plugins_loaded" hook to load text domains. This aligns with WordPress 6.7 requirements, which specify that text domains should only be loaded on init or later.
The text was updated successfully, but these errors were encountered: