Advertisement
Guest User

Slideshow.php

a guest
Jul 13th, 2010
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.84 KB | None | 0 0
  1. <div id="slidewindow">     
  2.  
  3.     <ul id="slideshow">
  4.    
  5.         <li class="box1"><a href="<?php the_permalink(); ?>"><img src="<?php bloginfo('template_url');?>/images/featuredimages/<?php echo get_post_meta($post->ID, 'FeaturedImage', true); ?>"></a></li>
  6.        
  7.         <li class="box2"><img src="http://obiaudio:8888/wp-content/themes/custom/images/featuredimages/macaw.jpg"></li>
  8.        
  9.         <li class="box3"><img src="http://obiaudio:8888/wp-content/themes/custom/images/featuredimages/tiger.jpg"></li>
  10.        
  11.         <li class="box4"><img src="http://obiaudio:8888/wp-content/themes/custom/images/featuredimages/panda.jpg"></li>
  12.  
  13.  
  14.     </ul>
  15.  
  16. </div>
  17.  
  18. <div id="slidecontent">
  19.  
  20.     <h2 class="featuredtitle"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  21.    
  22.     <p><?php the_excerpt(); ?></p>
  23.  
  24. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement