I just recently redesigned my site and originally (on the development server) I was using a plugin called Post Thumbs Revisited. It works beautifully there, as you can see: http://pixelita.mytestbed.com/blog
When I moved everything to the live site, and also migrated all the images in the /uploads folder, no images appeared. The paths are correct, I can SEE the images via FTP, but if you try to click on them, WP says "Sorry, no posts matched your criteria."
So I removed Post Thumbs Revisited and turned on WP 2.9's native post thumbnail support by following this advice:
1. Adding this to my functions.php file:
if(function_exists('add_theme_support')){
add_theme_support( 'post-thumbnails' );
}
2. Adding this call in my template where I want the thumbs to appear:
<?php the_post_thumbnail(); ?>
Still, no images appear anywhere. Yet they are present on the server.
http://www.pixelita.com/blog
Any thoughts? I'd like to get this blog portion of my site back up and running. I'm using the standard .htaccess file; the .htaccess files are identical at pixelita.com and pixelita.mytestbed.com, so that can't be the issue I don't think.
Thanks!