Advertisement
Guest User

Untitled

a guest
Nov 7th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <div class="attachment-entry">
  2.     <a href="<?php echo wp_get_attachment_url( $post->ID ); ?>"><?php echo wp_get_attachment_image( $post->ID, 'large' ); ?></a>
  3.     <?php if ( !empty( $post->post_excerpt ) ) {
  4.         the_excerpt();
  5.     } ?>
  6.     <?php the_content( __( 'Read more &#8250;', 'responsive' ) ); ?>
  7.     <?php wp_link_pages( array( 'before' => '<div class="pagination">' . __( 'Pages:', 'responsive' ), 'after' => '</div>' ) ); ?>
  8. </div>
  9. <!-- end of .attachment-entry -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement