Update
This commit is contained in:
parent
1ab6e5f0b0
commit
5faca190a6
13 changed files with 1070 additions and 535 deletions
18
page.php
18
page.php
|
@ -14,17 +14,17 @@
|
|||
<?php
|
||||
// Start the loop.
|
||||
while (have_posts()):
|
||||
the_post();
|
||||
|
||||
// Include the page content template.
|
||||
get_template_part('template-parts/content', 'page');
|
||||
the_post();
|
||||
|
||||
// Include the page content template.
|
||||
get_template_part('template-parts/content', 'page');
|
||||
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if (comments_open() || get_comments_number()) {
|
||||
comments_template();
|
||||
}
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if (comments_open() || get_comments_number()) {
|
||||
comments_template();
|
||||
}
|
||||
|
||||
// End of the loop.
|
||||
// End of the loop.
|
||||
endwhile;
|
||||
?>
|
||||
</main>
|
||||
|
|
Reference in a new issue