Advertisement
Guest User

Untitled

a guest
Aug 5th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template part for displaying posts.
  4. *
  5. * @package musik
  6. */
  7.  
  8. ?>
  9.  
  10. <article id="post-<?php the_ID(); ?>" <?php post_class('post-item'); ?>>
  11. <?php if ( has_post_thumbnail() ): ?>
  12. <div class="post-media">
  13. <?php the_post_thumbnail( 'thumb_large', array( 'class' => 'img-full' ) ); ?>
  14. </div>
  15. <?php endif; ?>
  16. <div class="wrapper-lg">
  17. <header class="entry-header post-title">
  18. <?php the_title( sprintf( '<h2 class="entry-title m-t-none"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  19. <?php if ( 'post' == get_post_type() ) : ?>
  20. <div class="entry-meta m-b-md">
  21. <?php musik_posted_on(); ?>
  22. </div><!-- .entry-meta -->
  23. <?php endif; ?>
  24. </header><!-- .entry-header -->
  25.  
  26. <div class="entry-content">
  27. <?php
  28. echo ( content_limit(get_the_excerpt(), 50) );
  29. /* translators: %s: Name of current post */
  30. // the_content( sprintf(
  31. // wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'musik' ), array( 'span' => array( 'class' => array() ) ) ),
  32. // the_title( '<span class="screen-reader-text">"', '"</span>', false )
  33. // ) );
  34. ?>
  35.  
  36. <?php
  37. wp_link_pages( array(
  38. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'musik' ),
  39. 'after' => '</div>',
  40. ) );
  41. ?>
  42. </div><!-- .entry-content -->
  43.  
  44. <footer class="entry-footer text-muted m-t-md">
  45. <?php musik_entry_footer(); ?>
  46. </footer><!-- .entry-footer -->
  47. </div>
  48. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement