Advertisement
Guest User

Untitled

a guest
Dec 15th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="main-content" class="clearfix">
  4. <div id="left-area">
  5. <?php get_template_part('includes/breadcrumbs','page'); ?>
  6. <div id="entries">
  7. <div class="entry post clearfix">
  8. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  9. <h1 class="title"><?php the_title(); ?></h1>
  10. <h2><?php mp_product_price() ?><?php mp_buy_button() ?></h2>
  11. <?php $attr = array( 'id' => 'img1' );
  12.  
  13. echo get_the_post_thumbnail( $id, 'large', $attr ); ?>
  14.  
  15. <?php the_content(); ?>
  16. <?php if(function_exists('the_ratings')) { the_ratings(); } ?><?php mp_buy_button() ?>
  17. <?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','Aggregate').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  18. <?php edit_post_link(esc_html__('Edit this page','Aggregate')); ?>
  19. <?php endwhile; // end of the loop. ?>
  20. </div> <!-- end .entry -->
  21.  
  22. <?php if (get_option('aggregate_show_pagescomments') == 'on') comments_template('', true); ?>
  23. </div> <!-- end #entries -->
  24. </div> <!-- end #left-area -->
  25.  
  26. <?php get_sidebar(); ?>
  27.  
  28. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement