Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter purrfect10

    (@purrfect10)

    Ok, it appears that <div id=”slidearea”> is in the slide.php. Where do I add <?php the_title(); ?> ? See below.

    <script type="text/javascript">
    jQuery(function() {
    jQuery(".mygallery").jCarouselLite({
    btnNext: ".nextb",
    btnPrev: ".prevb",
    visible: 1,
    speed: 5000,
    auto: 2000,
    easing: "backout"
    });
    });
    </script>
    
    <div id="slidearea">
    
    <div id="gallerycover">
    <div class="mygallery">
    
    	<ul>
    			<?php
    			$gldcat = get_option('mult_gldcat');
    			$gldct = get_option('mult_gldct');
    			$my_query = new WP_Query('category_name='.$gldcat.'&showposts='.$gldct.'');
    			while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
    			?>
     <li>
    <div class="mytext">
    
    <?php
    if ( has_post_thumbnail() ) {
    			 the_post_thumbnail( 'slider-thumbnail', array('class' => 'slidim') );
    } else {
    	// the current post lacks a thumbnail
    }
    ?>
    <?php the_excerpt(); ?> 
    
    </div>
     </li>
    			<?php endwhile; ?>
         </ul>
    
        <div class="clear"></div>  
    
    </div>
    
    </div>
    
       <a href="#" class="prevb"></a>
       <a href="#" class="nextb"></a>  
    
    </div>

Viewing 1 replies (of 1 total)