Sublime Forum

Odd indenting in PHP file

#1

I love the re-indent command, however it is driving me crazy in my wordpress / php work. For instance this is what I get:

	<?php if (have_posts()) : ?>
	<?php while (have_posts()) : the_post(); ?>
	<?php the_content("More..."); ?>
<?php endwhile; ?>
<?php else : ?>
	<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>

This is what I think it should be:

<?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>
            <?php the_content("More..."); ?>
      <?php endwhile; ?>
<?php else : ?>
            <p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>

Any ideas?

0 Likes

Dev please address : Php Indenting