Advertisement
Guest User

Magpress

a guest
Jan 14th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.95 KB | None | 0 0
  1. <!-- POST START -->
  2. <article <?php post_class($oddpost); ?> id="post-<?php the_ID(); ?>">
  3.  
  4. <div class="post-top">
  5. <h1 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
  6. <?php get_template_part( 'lib/templates/post-meta' ); ?>
  7. <div class="sharebox-wrap">
  8. <?php get_template_part( 'lib/templates/share-box' ); ?>
  9. </div>
  10. </div>
  11.  
  12. <div class="post-content">
  13. <?php get_the_featured_excerpt($excerpt_length=45); ?>
  14.  
  15. <?php echo get_featured_post_image("<div class='post-thumb'>", "</div>", 600, 200, "alignleft", "large", 'image-'.get_the_ID() ,get_the_title(), false); ?>
  16.  
  17. </div>
  18.  
  19. <?php $get_google_code = get_theme_option('adsense_post'); if($get_google_code == '') { ?>
  20. <?php } else { ?>
  21. <?php if( 1 == $postcount ||  2 == $postcount ){ ?>
  22. <div class="adsense-post">
  23. <?php echo stripcslashes($get_google_code); ?>
  24. </div>
  25. <?php } ?>
  26. <?php } ?>
  27.  
  28. </article>
  29. <!-- POST END -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement