scribu / wp-scb-framework

Utilities for speeding up WordPress plugin and theme development
https://github.com/scribu/wp-scb-framework/wiki
220 stars 59 forks source link

plugins_loaded hook is too early #12

Closed mjangda closed 12 years ago

mjangda commented 12 years ago

To use this framework in a theme or to use a scb-powered plugin loaded from a theme (require( 'plugins/plugin.php' );), the plugins_loaded hook should be changed to after_setup_theme. It makes semantically less sense but covers more of these use cases. I suspect backwards compat could be an issue though.

scribu commented 12 years ago

I think that should do it. Thanks for bringing it up.

mjangda commented 12 years ago

Looks good! Thanks.