Guest User

Untitled

a guest
May 26th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. <div id="featured" >
  2.     <ul class="ui-tabs-nav">
  3.         <?php query_posts('showposts=4&cat=3'); $i = 1; if (have_posts()) { while (have_posts()) { the_post(); ?>
  4.         <li class="ui-tabs-nav-item <?php if ($i == 1) { ?>ui-tabs-selected<?php } ?>"<?php echo 'id="nav-fragment-' . $i . '"><a href="#fragment-' . $i . '">'; ?>
  5.         <img src="<?php echo get_option('home');?>/<?php $key="imagem1";echo get_post_meta($post->ID,$key,true);?>" width="70" height="40"
  6.         title="<?php the_title();?>" alt="<?php the_title();?>">
  7.         <span><?php echo substr(get_the_excerpt(), 0, 55); ?></span></a></li>
  8.                    
  9.         <?php  $i++; } // end while loop
  10.         } // end if
  11.                    
  12.                         wp_reset_query(); ?>
  13.     </ul>
  14.                    
  15.         <?php query_posts('showposts=4&cat=3'); $i = 1; if (have_posts()) { while (have_posts()) { the_post(); ?>
  16.         <?php echo '<div id="fragment-' . $i . '" class="ui-tabs-panel" style="">'; ?>
  17.         <img src="<?php echo get_option('home');?>/<?php $key="imagem1";echo get_post_meta($post->ID,$key,true);?>"
  18.         width="360" height="210"            title="<?php the_title();?>" alt="<?php the_title();?>">
  19.         <div class="info" >
  20.         <h2><a href="<?php the_permalink() ?>" ><?php the_title(); ?></a></h2>
  21.         </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment