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

Commit

Permalink
Coding standard issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
manishsongirkar committed Mar 10, 2014
1 parent d3d9471 commit 93af491
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.php
Expand Up @@ -19,17 +19,17 @@
} }


if ( is_archive() ) { if ( is_archive() ) {
$rtp_content_class = ' class="rtp-content-section ' . $rtp_content_grid_class . ' rtp-multiple-post" '; $rtp_content_class = ' rtp-content-section ' . $rtp_content_grid_class . ' rtp-multiple-post ';
} elseif ( is_page() || is_single() || is_404() ) { } elseif ( is_page() || is_single() || is_404() ) {
$rtp_content_class = ' class="rtp-content-section ' . $rtp_content_grid_class . ' rtp-singular" '; $rtp_content_class = ' rtp-content-section ' . $rtp_content_grid_class . ' rtp-singular ';
} elseif ( is_home() ) { } elseif ( is_home() ) {
$rtp_content_class = ' class="rtp-content-section ' . $rtp_content_grid_class . ' rtp-blog-post" '; $rtp_content_class = ' rtp-content-section ' . $rtp_content_grid_class . ' rtp-blog-post ';
} else { } else {
$rtp_content_class = ' class="rtp-content-section ' . $rtp_content_grid_class . '"'; $rtp_content_class = ' rtp-content-section ' . $rtp_content_grid_class;
} }
?> ?>


<section id="content" role="main"<?php echo $rtp_content_class; ?>> <section id="content" role="main" class="<?php echo esc_attr( $rtp_content_class ); ?>">
<?php rtp_hook_begin_content(); ?> <?php rtp_hook_begin_content(); ?>


<?php get_template_part( 'loop', 'common' ); ?> <?php get_template_part( 'loop', 'common' ); ?>
Expand Down

0 comments on commit 93af491

Please sign in to comment.