Changes between Initial Version and Version 1 of Ticket #15881, comment 17
- Timestamp:
- 12/29/2010 11:39:06 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15881, comment 17
initial v1 6 6 7 7 I can see how very few plugins use db.php to get started early (caches and things like hive) but, a hook after the database is set up, before WP really gets going, could be useful. Something in wp-setting.php around about line 94: 8 9 {{{ 8 10 // Stop most of WordPress from being loaded if we just want the basics. 9 11 if ( SHORTINIT ) 10 12 return false; 11 13 14 POST_INIT_HOOK_HERE? 15 }}} 16 17 12 18 seems like a good spot.