Change priority of connectors load to be after widgets_init #532
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #531
The problem was that you can't call
global $wp_registered_sidebars
until theinit
hook has fired with a priority of 1, which is whenwigets_init
happens. See the special note aboutwidgets_init
in the Codex Action Reference.So by loading connectors on
init
with a priority of 9 we are able to get the sidebar names correctly and also prevent regression on #501 because we only miss the user login/logout when usinginit
with a priority 10.I think it's better to fire as close to the default priority as we can rather than as far away from it as we can, just in case other plugins (or core) introduce globals on lower priorities that Stream would need.
No upgrade routine is needed for this as all previous records will now query the
get_context_labels
method successfully. MVC approach FTW!