content-page.php (519B)
1 <?php 2 /** 3 * Template part for displaying page content in page.php 4 * 5 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ 6 * 7 * @package welbim 8 */ 9 10 ?> 11 12 <div class="page-content"> 13 <?php the_content(); ?> 14 <?php 15 wp_link_pages( 16 array( 17 'before' => '<div class="page-links">', 18 'after' => '</div>', 19 ) 20 ); 21 ?> 22 </div> 23 <?php 24 // If comments are open or we have at least one comment, load up the comment template. 25 if ( comments_open() || get_comments_number() ) : 26 comments_template(); 27 endif; 28