HEX
Server: Apache/2.2.34 (Unix) mod_fastcgi/mod_fastcgi-SNAP-0910052141
System: Linux Kou-Etsu-Dou 4.4.59+ #25556 SMP PREEMPT Thu Mar 4 18:03:46 CST 2021 x86_64
User: hosam (1026)
PHP: 7.2.29
Disabled: NONE
Upload Files
File: /volume1/web/wordpress/wp-content/themes/chaplin/template-only-content.php
<?php

/* 
Template Name: Only Content Template
Template Post Type: post, page
*/

get_header(); ?>

<main id="site-content">

	<?php

	if ( have_posts() ) :
		while ( have_posts() ) : 
		
			the_post(); 

			?>

			<article <?php post_class( 'section-inner' ); ?> id="post-<?php the_ID(); ?>">

				<?php do_action( 'chaplin_entry_article_start', $post->ID ); ?>

				<?php the_title( '<h1 class="screen-reader-text">', '</h1>' ); ?>

				<div class="post-inner" id="post-inner">

					<div class="entry-content">

						<?php 
						the_content();
						wp_link_pages();
						edit_post_link();
						?>

					</div><!-- .entry-content -->

				</div><!-- .post-inner -->

				<?php do_action( 'chaplin_entry_article_end', $post->ID ); ?>

			</article><!-- .post -->
			<?php

		endwhile;
	endif;

	?>

</main><!-- #site-content -->

<?php get_footer(); ?>