site_oueb_2/wp-content/themes/oceanwp/partials/page/layout.php

28 lines
368 B
PHP
Raw Permalink Normal View History

2022-11-22 20:23:31 +01:00
<?php
/**
* Outputs correct page layout
*
* @package OceanWP WordPress theme
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<article class="single-page-article clr">
<?php
// Get page entry.
get_template_part( 'partials/page/article' );
// Display comments.
comments_template();
?>
</article>