Advertisement
mansoormb

Untitled

Jan 10th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <section class="fmblod_lastest_wrap">
  3. <article class="fmblod_single_page">
  4. <div class="fmblod_page_title">
  5. <h1>Boutique</h1>
  6. </div>
  7. <div class="prod_wrap">
  8. <div class="product_container">
  9.  
  10. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  11.  
  12.  
  13. <div class="fmblod_page_title">
  14. <h1><?php the_title(); ?></h1>
  15. </div>
  16.  
  17. <div id="prodimage">
  18. <a href="<?php the_permalink(); ?>"><?php if ( has_post_thumbnail() ) {
  19. $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
  20. the_post_thumbnail('thumb');
  21. } ?></a>
  22. <?php $id = get_post_thumbnail_id(get_the_ID()); // gets the post thumbnail ID ?>
  23. </div>
  24. <div id="proddesc">
  25. <?php
  26. the_content();
  27. ?>
  28.  
  29. <?php echo framemarket_product_meta(); ?>
  30. </div>
  31.  
  32.  
  33. <?php endwhile; endif; ?>
  34. </div>
  35. <?php get_sidebar();?>
  36.  
  37. <div class="clear"></div>
  38. </div>
  39. </article>
  40.  
  41. </section>
  42.  
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement