Featured images do not display.
-
Hi all-
I am trying to create a box on the front-page that simply displays an image which links to the single post page.
I have read the Codex and added this code to my functions.php page:
<?php add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 296, 152, true ); ?>
And here is my loop that is supposed to be pulling from a single category.
<div id="art-highlight-container"> <div id="focus-box3"> <?php query_posts('category_name=Art-Focus&showposts=1'); ?> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?> </div><!-- div#focus-box3 --> </div><!-- #art-highlight-container -->
I am unable to display the image in “art-highlight-container”. Any suggestions?
Thanks.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Featured images do not display.’ is closed to new replies.