Advertisement
Guest User

content

a guest
Jul 29th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template used for displaying page content in page.php
  4. *
  5. * @package ThemeGrill
  6. * @subpackage ColorMag
  7. * @since ColorMag 1.0
  8. */
  9. ?>
  10.  
  11. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  12. <?php do_action( 'colormag_before_post_content' ); ?>
  13.  
  14. <?php if ( has_post_thumbnail() ) { ?>
  15. <div class="featured-image">
  16. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail( 'colormag-featured-image' ); ?></a>
  17. </div>
  18. <?php } ?>
  19.  
  20. <div class="article-content clearfix">
  21.  
  22. <?php if( get_post_format() ) { get_template_part( 'inc/post-formats' ); } ?>
  23.  
  24. <?php colormag_colored_category(); ?>
  25.  
  26. <header class="entry-header">
  27. <h1 class="entry-title">
  28. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a>
  29. </h1>
  30. </header>
  31.  
  32. <?php colormag_entry_meta(); ?>
  33.  
  34. <div class="entry-content clearfix">
  35. <?php
  36. the_excerpt();
  37. ?>
  38. <a class="more-link" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><span><?php _e( 'Read more', 'colormag' ); ?></span></a>
  39. </div>
  40.  
  41. </div>
  42.  
  43. <?php do_action( 'colormag_after_post_content' ); ?>
  44. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement