WordPress 2.8 is now stricter about when parts of it are initialized, most likely for performance reasons. The parts of the current ComicPress functions.php that handle category information loading are currently being initialized too soon in the chain of events, before the code that allows one to load category information from the database is ready. This fix for functions.php will repair the problem that everyone is having related to categories (missing images, posts not appearing in the right places), and when Tyler and I have time, we will release 2.7.1 which will fix the issue for good. Storyline Mode only suppresses the real problem, so be sure to disable it (if you're not normally using it) once this fix is applied.
In your functions.php file, around like 33-34, you'll see:
- Code: Select all
// load all of the comic & non-comic category information
get_all_comic_categories();
change this to:
- Code: Select all
// load all of the comic & non-comic category information
add_action('init', 'get_all_comic_categories');
And post your success or failure to this post. If it succeeds for you, please be sure to also send a message out on Twitter indicating so, with a link to this post.