content-page.php (401B)
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 appside 8 */ 9 10 ?> 11 12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 13 <div class="entry-content"> 14 <?php 15 the_content(); 16 17 Appside()->link_pages(); 18 ?> 19 </div><!-- .entry-content --> 20 </article><!-- #post-<?php the_ID(); ?> -->