content-page.php 525 Bytes
<?php
/**
 * Partial template for content in page.php
 *
 * @package Understrap
 */

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;


?>

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



	<div class='content-header-seperater'></div>
	


	<div class="entry-content">


		<?php
			the_content();
			understrap_link_pages();
		?>

	</div><!-- .entry-content -->
	
	<footer class="entry-footer">

		<?php understrap_edit_post_link(); ?>

	</footer><!-- .entry-footer -->

</article><!-- #post-## -->