Upgraded install to multisite, now post thumbnails broken.
-
I upgraded my web site to a multisite network, and shortly after noticed that post thumbnails on my custom post types stopped working.
I’ve got a bunch of custom post types (like Movie) with thumbnails. I define them in my theme’s function.php file, in a function run when the ‘init’ action fires. (I also tried pulling it out of ‘init’ and running it immediately when the theme is loaded, but that results in the same thing.)
Before upgrading to multisite, it worked great. My movies had thumbnails. After upgrading, the ‘thumbnail’ edit panel is now gone from the edit view. Thumbnails previously defined are still used, so in the front end that part still works. But in the admin panel, the ability to add or change them is gone. The Post Thumbnail box is gone from the Edit Post page, and there’s no “Use as thumbnail” button in a post’s gallery anymore.
And just to cover the obvious, yes I do call
add_theme_support( 'post-thumbnails' )
, and the register_post_type call includes'supports' => array('thumbnail')
. This same exact code worked perfectly before switching to multisite. I also disabled every single plugin the site uses to check if there’s a compatibility problem there, still nothing.Running WordPress 3.1.2, though did the update to Multisite a couple of versions ago. Spent that time trying to figure this problem out to no avail.
- The topic ‘Upgraded install to multisite, now post thumbnails broken.’ is closed to new replies.