Skip to content

Commit

Permalink
Remove spurious echo statements and references to $post->ID
Browse files Browse the repository at this point in the history
  • Loading branch information
query committed Mar 1, 2011
1 parent 9735c8a commit 9f69ce1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions front-page.php
Expand Up @@ -70,11 +70,11 @@
?>
<li>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a href="<?php echo the_permalink(); ?>" rel="bookmark">
<a href="<?php the_permalink(); ?>" rel="bookmark">
<figure>
<?php echo get_the_post_thumbnail($post->ID, 'post-thumbnail', array('alt' => '', 'title' => '')); ?>
<?php the_post_thumbnail('post-thumbnail', array('alt' => '', 'title' => '')); ?>
</figure>
<h1><?php echo the_title(); ?></h1>
<h1><?php the_title(); ?></h1>
<div class="excerpt"><?php echo get_post_meta($post->ID, 'excerpt', true); ?></div>
</a>
</article>
Expand Down

0 comments on commit 9f69ce1

Please sign in to comment.