Such A Difficult Time With Thumbnails
-
So I HAve been searching around the forums for how it is I need to go about adding the Thumbnail feature to the edit post screen.
Oddly enough the theme I have installed already has the line of code in the Functions.PHP file that should allow it to add the thumbnail feature:
<?php if ( function_exists(“add_theme_support”) ) { add_theme_support(“post-thumbnails”); } ?>
However that line of code is just slightly different from the line of code that wordpress offers in the codex:
<?php if ( function_exists( ‘add_theme_support’ ) ) { add_theme_support( ‘post-thumbnails’ ); } ?>
I tried using both of these lines of code in my themes Function.PHP but they dont work. All I see in my post edit screen and in the image edit screen is “set featured image” and it has to be a thumbnail in order for this to work properly for me.
Please if any of you can help let me know. I am not a wizard when it comes to php. O_o
The topic ‘Such A Difficult Time With Thumbnails’ is closed to new replies.