Files
valier-theme/theme/template-parts/content/content-page.php
Josevi Canet 19403eb4c8 first version
2024-06-14 15:48:06 +02:00

28 lines
491 B
PHP

<?php
/**
* Template part for displaying pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Valier
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div <?php vlr_content_class('entry-content'); ?>>
<?php
the_content();
wp_link_pages(
array(
'before' => '<div>' . __('Pages:', 'valier'),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->