No thumbnail in admin, no thumbnail on page, no thumbnails
-
I’m trying to get thumbnails to show up on my theme.
I’ve added the code to activate the thumbnail functionality in the functions.php document:
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails
add_image_size( ‘single-post-thumbnail’, 400, 9999 ); // Permalink thumbnail sizeand then I added the call to the thumbnail:
<?php the_post_thumbnail( $size, $attr ); ?>From what I understand that is pretty textbook. For some reason, it is not working. I do not get a thumbnail uploader on the admin page or any other options to “add post thumbnail”.
I’ve installed and uninstalled several plugins that are supposed to do that, and they just don’t show up.
I’m really annoyed and frsutrated but I can’t figure out what I’m missing, if I’m doing something wrong or what.
Any ideas, suggestions?
- The topic ‘No thumbnail in admin, no thumbnail on page, no thumbnails’ is closed to new replies.