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
You are calling the get_plugins() function immediately on your plugin load, it is recommended to call this on the 'after_setup_theme' hook or later.
The issue is that the function caches the result of the function call on its first call, hence any plugin or theme using its filters will be unsuccessful as the data is already cached by your early call, rendering the filters useless.
Please fix this issue.
The text was updated successfully, but these errors were encountered:
You are calling the get_plugins() function immediately on your plugin load, it is recommended to call this on the 'after_setup_theme' hook or later.
The issue is that the function caches the result of the function call on its first call, hence any plugin or theme using its filters will be unsuccessful as the data is already cached by your early call, rendering the filters useless.
Please fix this issue.
The text was updated successfully, but these errors were encountered: