EcoWP/template-parts/content-page.php
2022-09-14 19:14:59 +12:00

24 lines
486 B
PHP

<?php
/**
* Template part for displaying page content in page.php
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package L\'InSuffleriE
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
the_content();
?>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->