🏠 Root
/
home
/
artorgp
/
www
/
wp-content
/
themes
/
olorun
/
Editing: page.php
<?php /** * This is the template by default that displays all pages. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage Base theme developped by Arthur H. * @version 1.0 */ get_header(); while ( have_posts() ) : the_post(); $code_page = get_field('code_page'); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php echo '<h1>'.get_the_title().'</h1>'; the_content(); if(!empty($code_page)) { echo $code_page; } endwhile; ?> </main><!-- #main --> </div><!-- #primary --> <?php get_footer(); ?>
Save
Cancel