Featured Image Not Working in WP 3.6
-
Featured Image support not working in WP 3.6
I’ve searched the forums and the net and see a lot of idiotic answers to this problem from people who think they understand the problem but are obviously not reading the issue, or have not tried to actually implement the Featured Image / Post Thumbnail as described in the scriptures at the WP Codex.
__ Yes i have theme support in functions.php
add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 150, 150 );
And this then in turn enables Featured Image dialogue in the WP Admin Post Edit screen.
Template usage:
<div id="post_thumbnail"> <?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?> </div>
I also tried this with
$page->ID
– no success their either.__ Yes I disabled all plugins, that’s not the problem
__ Yes I read the useless 3.5 issues page which says nothing about this issue.
__ Additionally, Featured Image dialogue in the WP Admin Post Edit screen does indeed trigger the popup for Media Upload, allowing me to select Image for Featured Image, but:
No thumbnail is generated in the WP Admin Post Edit screen, which in turn there is no thumbnail showing on the loop of either excerpt or content.A view of the page source for the post shows nothing, no errors for the thumbnail (either $page or $post)
Any ideas?
- The topic ‘Featured Image Not Working in WP 3.6’ is closed to new replies.