Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Remove duplicate class in single template #616

Merged
merged 2 commits into from
Dec 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<?php do_action( 'foundationpress_before_content' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<article class="main-content" <?php post_class() ?> id="post-<?php the_ID(); ?>">
<article <?php post_class('main-content') ?> id="post-<?php the_ID(); ?>">
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php foundationpress_entry_meta(); ?>
Expand Down