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:
parent
d07cfaff16
commit
a214b120c4
@ -172,9 +172,10 @@ wp_ssl_constants( );
|
|||||||
// Create common globals.
|
// Create common globals.
|
||||||
require( ABSPATH . WPINC . '/vars.php' );
|
require( ABSPATH . WPINC . '/vars.php' );
|
||||||
|
|
||||||
// Make taxonomies available to plugins and themes.
|
// Make taxonomies and posts available to plugins and themes.
|
||||||
// @plugin authors: warning: this gets registered again on the init hook.
|
// @plugin authors: warning: these get registered again on the init hook.
|
||||||
create_initial_taxonomies();
|
create_initial_taxonomies();
|
||||||
|
create_initial_post_types();
|
||||||
|
|
||||||
// Load active plugins.
|
// Load active plugins.
|
||||||
foreach ( wp_get_active_and_valid_plugins() as $plugin )
|
foreach ( wp_get_active_and_valid_plugins() as $plugin )
|
||||||
|
Loading…
Reference in New Issue
Block a user