Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

page.php 980 B

3 år sedan
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * The template for displaying pages
  4. *
  5. * This is the template that displays all pages by default.
  6. * Please note that this is the WordPress construct of pages and that
  7. * other "pages" on your WordPress site will use a different template.
  8. *
  9. * @package WordPress
  10. * @subpackage Twenty_Sixteen
  11. * @since Twenty Sixteen 1.0
  12. */
  13. get_header(); ?>
  14. <div id="primary" class="content-area">
  15. <main id="main" class="site-main" role="main">
  16. <?php
  17. // Start the loop.
  18. while ( have_posts() ) : the_post();
  19. // Include the page content template.
  20. get_template_part( 'template-parts/content', 'page' );
  21. // If comments are open or we have at least one comment, load up the comment template.
  22. if ( comments_open() || get_comments_number() ) {
  23. comments_template();
  24. }
  25. // End of the loop.
  26. endwhile;
  27. ?>
  28. </main><!-- .site-main -->
  29. <?php get_sidebar( 'content-bottom' ); ?>
  30. </div><!-- .content-area -->
  31. <?php get_sidebar(); ?>
  32. <?php get_footer(); ?>