Advertisement
salmancreation

first post image show after all ul li style post in wordpres

Jan 19th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.54 KB | None | 0 0
  1. <div class="iteam4_1">
  2.                             <div class="fix catagory_name_plus iteam4head">
  3.                                 <div class="fix catagory_name item4Color">
  4.                                     <h1><a href="http://darpon.com/&#2471;&#2480;&#2509;&#2478;">&#2471;&#2480;&#2509;&#2478;</a></h1>
  5.                                 </div><!--catagory_name END-->
  6.                                 <div class="fix catagory_plus iteam4plus">
  7.                                     <h5><a href="http://darpon.com/&#2471;&#2480;&#2509;&#2478;">+</a></h5>
  8.                                 </div><!--catagory_plus END-->
  9.                             </div><!--catagory_name_plus END-->
  10.                             <?php query_posts('cat=18&post_type=post&post_status=publish&posts_per_page=1'); ?>
  11.                             <?php if(have_posts()) : ?>
  12.                                 <?php while (have_posts()) : the_post(); ?>
  13.                                     <div class="fix iteamPicBox">
  14.                                         <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
  15.                                     </div><!--iteamPicBox END-->
  16.                                     <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  17.                                 <?php endwhile; ?>    
  18.                             <?php endif; ?>
  19.                                 <ul>
  20.                                     <?php query_posts('cat=18&post_type=post&post_status=publish&posts_per_page=5');
  21.                                         $i = 0; ?>
  22.                                         <?php if(have_posts()) : ?>
  23.                                             <?php while (have_posts()) : the_post(); $i++;
  24.                                                 if($i==1) continue;?>
  25.                                             <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  26.                                             </li>
  27.                                         <?php endwhile; ?>    
  28.                                     <?php endif; ?>
  29.                                 </ul>                      
  30.                         </div><!--iteam4_1 END-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement