Anyone know of a plugin that will show recent posts in the sidebar WITH thumbs (along with a little text)?
Thanks.
Thanks.
<?php the_post_thumbnail( array(265,265) ); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php $recent = new WP_Query('showposts=6'); while($recent->have_posts()) : $recent->the_post();?>
<?php the_post_thumbnail( array(265,265) ); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>

<?php the_post_thumbnail( array(265,265) ); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php $recent = new WP_Query('showposts=6'); while($recent->have_posts()) : $recent->the_post();?>
<?php the_post_thumbnail( array(265,265) ); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>

<?php $recent = new WP_Query('showposts=6'); while($recent->have_posts()) : $recent->the_post();?>
[COLOR="Orange"]<?php the_post_thumbnail( array(265,265) ); ?>[/COLOR]
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>
[COLOR="LemonChiffon"]the_post_thumbnail();[/COLOR] // without parameter -> Thumbnail
the_post_thumbnail('thumbnail'); // Thumbnail
the_post_thumbnail('medium'); // Medium resolution
the_post_thumbnail('large'); // Large resolution
the_post_thumbnail( array(100,100) ); // Other resolutions
[COLOR="LemonChiffon"]the_post_thumbnail();[/COLOR] // without parameter -> Thumbnail
the_post_thumbnail('thumbnail'); // Thumbnail
the_post_thumbnail('medium'); // Medium resolution
the_post_thumbnail('large'); // Large resolution
the_post_thumbnail( array(100,100) ); // Other resolutions
add_theme_support( 'post-thumbnails' );

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php get_the_image( array( 'meta_key' => 'feature_img', 'size' => 'medium', 'width' => '257', 'height' => '164', 'image_class' => 'feature' ) ); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a> <div class="entry-summary"> <?the_excerpt(); ?> </div> </div> <?php endwhile; endif; ?>




Comment