PHP Classes

File: page.php

Recommend this page to a friend!
  Classes of Victor Andeloci   Project P Wordpress Podcast Theme   page.php   Download  
File: page.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Project P Wordpress Podcast Theme
Publish pages for a podcast in a WordPress site
Author: By
Last change:
Date: 11 months ago
Size: 440 bytes
 

Contents

Class file image Download
<?php get_header(); ?>

<main id="page">
    <div class="container">
        <?php get_template_part('parts/header_info'); ?>
<?php get_template_part('parts/banner_min', null, [
           
'page_title' => get_the_title()
        ]);
?>
<?php get_template_part('elements/nav'); ?>
<div class="content post-content">
            <?= get_the_content() ?>
</div>
    </div>
</main>

<?php get_footer(); ?>