Guest User

Untitled

a guest
Jul 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php
  4. $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), full );
  5. $image = (empty($image['0']))? '/wp-content/uploads/2011/09/img-3.png' : $image['0'];
  6. $link = get_bloginfo( 'template_url' )."/image.php?src=".$image."&w=121&h=120";
  7. ?>
  8.  
  9.     <div id="content">
  10.         <section class="one-column" >
  11.  
  12.             <?php if (have_posts()) :  ?>
  13.             <?php while (have_posts()) : the_post(); ?>
  14.             <article>
  15.                 <h1 class="blue auto"><?php the_title(); ?></h1>
  16.                 <div class="item">
  17.                    
  18.                     <div class="description">
  19.                         <img src="<?php echo $link; ?>" class="alignleft ">
  20.                         <?php the_content(); ?>
  21.                     </div>
  22.                 </div>
  23.  
  24.             </article>
  25.             <?php endwhile; ?>
  26.             <?php endif; ?>
  27.         </section>
  28.  
  29.  
  30.     <?php include(TEMPLATEPATH.'/bottom_slider.php'); ?>
  31.  
  32.     <?php include(TEMPLATEPATH.'/brands.php'); ?>
  33.    
  34.     </div><!-- #content-->
  35. </div><!-- #wrapper -->
  36.  
  37. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment