Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. <?php $options = get_option('playbook'); ?>
  2. <?php get_header(); ?>
  3. <div id="page">
  4. <div class="content">
  5. <article class="article">
  6. <div id="content_box">
  7. <h1 class="homesep">Latest Blog Posts</h1>
  8. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  9. <div class="post excerpt <?php echo (++$j % 2 == 0) ? 'last' : ''; ?>">
  10. <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" id="featured-thumbnail">
  11. <?php if ( has_category_title() ) { ?>
  12. <?php echo '<div class="category-ttitle">';?>
  13. <?php if ( has_post_thumbnail() ) { ?>
  14. <?php echo '<div class="featured-thumbnail">'; the_post_thumbnail('featured',array('title' => '')); echo '</div>'; ?>
  15. <?php } else { ?>
  16. <div class="featured-thumbnail">
  17. <?php echo adrotate_group(32); ?>
  18. </div>
  19. <?php } ?>
  20. </a>
  21. <header>
  22. <h2 class="title">
  23. <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a>
  24. </h2>
  25. </header><!--.header-->
  26. <div class="post-content image-caption-format-1">
  27. <?php echo excerpt(17);?>
  28. </div>
  29.  
  30. <div style="display:none" class="readMore"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php _e('Read More','mythemeshop'); ?></a></div>
  31. </div><!--.post excerpt-->
  32. <?php endwhile; else: ?>
  33. <div class="post excerpt">
  34. <div class="no-results">
  35. <p><strong><?php _e('There has been an error.', 'mythemeshop'); ?></strong></p>
  36. <p><?php _e('We apologize for any inconvenience, please hit back on your browser or use the search form below.', 'mythemeshop'); ?></p>
  37. <?php get_search_form(); ?>
  38. </div><!--noResults-->
  39. </div>
  40. <?php endif; ?>
  41. <?php if ($options['mts_pagenavigation'] == '1') { ?>
  42. <?php pagination($additional_loop->max_num_pages);?>
  43. <?php } else { ?>
  44. <div class="pnavigation2">
  45. <div class="nav-previous"><?php next_posts_link( __( '&larr; '.'Older posts', 'mythemeshop' ) ); ?></div>
  46. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts'.' &rarr;', 'mythemeshop' ) ); ?></div>
  47. </div>
  48. <?php } ?>
  49. </div>
  50. <!-- Inner Page Content Widgets -->
  51. <?php dynamic_sidebar('Inner Content Widgets'); ?>
  52.  
  53. </article>
  54. <?php get_sidebar(); ?>
  55. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement