Call create_initial_post_types() before plugins and themes are loaded so that premature post API calls don't fail. fixes #12918

git-svn-id: https://develop.svn.wordpress.org/trunk@14041 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-04-08 16:45:18 +00:00
parent d07cfaff16
commit a214b120c4
1 changed files with 3 additions and 2 deletions

View File

@ -172,9 +172,10 @@ wp_ssl_constants( );
// Create common globals.
require( ABSPATH . WPINC . '/vars.php' );
// Make taxonomies available to plugins and themes.
// @plugin authors: warning: this gets registered again on the init hook.
// Make taxonomies and posts available to plugins and themes.
// @plugin authors: warning: these get registered again on the init hook.
create_initial_taxonomies();
create_initial_post_types();
// Load active plugins.
foreach ( wp_get_active_and_valid_plugins() as $plugin )