PHP Classes

File: page.php

Recommend this page to a friend!
  Classes of Victor Andeloci   One WordPress Game Theme   page.php   Download  
File: page.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: One WordPress Game Theme
WordPress theme for a gaming blog and podcast
Author: By
Last change:
Date: 9 months ago
Size: 287 bytes
 

Contents

Class file image Download
<?php
    get_header
();
   
$post = get_post();
?>

<main class="post page">
    <div class="container">
        <div class="content">
            <h1><?= get_the_title() ?></h1>
            <?= get_the_content() ?>
        </div>
    </div>
</main>

<?php get_footer(); ?>