samzee
05-27-2010, 05:23 AM
1) Script Title: Featured Content Glider
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm
3) Describe problem:
Hi, does anyone know how to make the content (post title with snippet text) rotate together with the images? As seen here (http://www.wpzoom.com/yamidoo/demo/)
Here the code that needs editing:
<div id="featured-article">
<?php query_posts('showposts=1'); ?> <!-- Shows the most recent post (featured article) -->
<?php while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<small><?php the_category(', ') ?> — <?php the_time('F j, Y') ?> at <?php the_time() ?> <?php edit_post_link( __('Edit'), ' | ', ''); ?></small>
<?php the_content_limit(410, ''); ?>
<h4><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">read more</a></h4>
<?php endwhile; ?>
</div> <!-- end featured article -->
<div class="clear"></div>
Thanks a bunch
Samuel
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm
3) Describe problem:
Hi, does anyone know how to make the content (post title with snippet text) rotate together with the images? As seen here (http://www.wpzoom.com/yamidoo/demo/)
Here the code that needs editing:
<div id="featured-article">
<?php query_posts('showposts=1'); ?> <!-- Shows the most recent post (featured article) -->
<?php while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<small><?php the_category(', ') ?> — <?php the_time('F j, Y') ?> at <?php the_time() ?> <?php edit_post_link( __('Edit'), ' | ', ''); ?></small>
<?php the_content_limit(410, ''); ?>
<h4><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">read more</a></h4>
<?php endwhile; ?>
</div> <!-- end featured article -->
<div class="clear"></div>
Thanks a bunch
Samuel