Fix indentation

This commit is contained in:
Tania 2016-01-14 03:17:22 -06:00
parent d708a1c47d
commit 6b8b100f6a

View file

@ -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(); ?>
@ -18,7 +18,7 @@ $args = array(
</div>
<?php endwhile; ?>
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /.col -->
</div> <!-- /.row -->
<?php get_footer(); ?>