Make calls in image.php template more explicit to allow for easier hacking and adaptation.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7541 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
74cff8bd3c
commit
efef565261
|
@ -7,12 +7,11 @@
|
|||
<div class="post" id="post-<?php the_ID(); ?>">
|
||||
<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <?php the_title(); ?></h2>
|
||||
<div class="entry">
|
||||
<p class="attachment"><?php echo wp_get_attachment_link(0, 'medium', false); ?></p>
|
||||
<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
|
||||
<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
|
||||
|
||||
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
|
||||
|
||||
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
||||
|
||||
<div class="navigation">
|
||||
<div class="alignleft"><?php previous_image_link() ?></div>
|
||||
<div class="alignright"><?php next_image_link() ?></div>
|
||||
|
|
Loading…
Reference in New Issue