Skip to content

Commit

Permalink
Fixes "Correct indentation" example
Browse files Browse the repository at this point in the history
  • Loading branch information
thesandybridge authored May 31, 2021
1 parent 128cb48 commit 4733da3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions wordpress-coding-standards/html.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ Correct:
```php
<?php if ( ! have_posts() ) : ?>
<div id="post-1" class="post">
<h1 class="entry-title">Not Found</h1>
<div class="entry-content">
<p>Apologies, but no results were found.</p>
<?php get_search_form(); ?>
</div>
<h1 class="entry-title">Not Found</h1>
<div class="entry-content">
<p>Apologies, but no results were found.</p>
<?php get_search_form(); ?>
</div>
</div>
<?php endif; ?>
```
Expand Down

0 comments on commit 4733da3

Please sign in to comment.