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"> <div class="col-sm-12">
<?php <?php
$args = array( $args = array(
'post_type' => 'my-custom-post', 'post_type' => 'my-custom-post',
'orderby' => 'menu_order', 'orderby' => 'menu_order',
'order' => 'ASC' 'order' => 'ASC'
); );
$custom_query = new WP_Query( $args ); $custom_query = new WP_Query( $args );
while ($custom_query->have_posts()) : $custom_query->the_post(); ?> while ($custom_query->have_posts()) : $custom_query->the_post(); ?>
@ -18,7 +18,7 @@ $args = array(
</div> </div>
<?php endwhile; ?> <?php endwhile; ?>
</div> <!-- /.col --> </div> <!-- /.col -->
</div> <!-- /.row --> </div> <!-- /.row -->
<?php get_footer(); ?> <?php get_footer(); ?>