Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
taniarascia committed Jan 14, 2016
1 parent d708a1c commit 6b8b100
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions page-custom.php
Expand Up @@ -4,11 +4,11 @@
<div class="col-sm-12">

<?php
$args = array(
'post_type' => 'my-custom-post',
'orderby' => 'menu_order',
'order' => 'ASC'
);
$args = array(
'post_type' => 'my-custom-post',
'orderby' => 'menu_order',
'order' => 'ASC'
);
$custom_query = new WP_Query( $args );
while ($custom_query->have_posts()) : $custom_query->the_post(); ?>

Expand All @@ -18,7 +18,7 @@
</div>

<?php endwhile; ?>
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /.col -->
</div> <!-- /.row -->

<?php get_footer(); ?>

0 comments on commit 6b8b100

Please sign in to comment.