Advertisement
Guest User

Untitled

a guest
Feb 15th, 2012
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.29 KB | None | 0 0
  1. <?php if (have_posts()) { $count = 0; ?>
  2. <?php while (have_posts()) { the_post(); $count++; ?>
  3. <div <?php post_class('post'); ?>>
  4. <h1 class="title"><?php the_title(); ?></h1>
  5. <?php if ( $woo_options['woo_thumb_single'] == "true" && !woo_embed('')) woo_image('width='.$woo_options['woo_single_w'].'&height='.$woo_options['woo_single_h'].'&class=thumbnail '.$woo_options['woo_thumb_single_align']); ?>
  6.  
  7. <div class="entry">
  8. <script type="text/javascript"><!--
  9. google_ad_client = "ca-pub-XXXXXXXXXXXXXXXXXXX";
  10. /* mostatil 468x60 bann */
  11. google_ad_slot = "9464162332";
  12. google_ad_width = 468;
  13. google_ad_height = 60;
  14. //-->
  15. </script>
  16. <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
  17. <?php  the_content(); ?>
  18. <script type="text/javascript"><!--
  19. google_ad_client = "ca-pub-XXXXXXXXXXXXXXX";
  20. /* mostatil 468x60 bann */
  21. google_ad_slot = "9464162332";
  22. google_ad_width = 468;
  23. google_ad_height = 60;
  24. //-->
  25. </script>
  26. <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
  27.  
  28. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'woothemes' ), 'after' => '</div>' ) ); ?>
  29.  
  30. </div>
  31. <?php the_tags('<p class="tags">'.__('Tags: ', 'woothemes'), ', ', '</p>'); ?>
  32. </div><!-- .post -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement