/ Published in: Other
Expand |
Embed | Plain Text
<?php $query = new WP_Query(''); ?> <?php if($query->have_posts()) : ?><?php while($query->have_posts()) : $query->the_post(); ?> <?php the_content(); ?> <?php endwhile; endif; ?> <?php $featured = new WP_Query('showposts=3&tag=featured'); ?> <?php if($featured->have_posts()) : ?> <ul id="featured"> <?php while($featured->have_posts()) : $featured->the_post(); ?> <li><a href="<!--?php the_permalink(); ?-->" title="<?php the_title(); ?>"><?php the_post_thumbnail(‘full’); ?></a></li> <?php endwhile; ?> </ul> <?php endif; ?>
You need to login to post a comment.
