PHP Classes

File: templates/contact.php

Recommend this page to a friend!
  Classes of Victor Andeloci   One WordPress Game Theme   templates/contact.php   Download  
File: templates/contact.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: 1 year ago
Size: 381 bytes
 

Contents

Class file image Download
<?php
   
/* Template Name: Contato */
   
get_header();
   
$post = get_post();
?>

<main class="post page">
    <div class="container">
        <div class="content">
            <h1><?= get_the_title() ?></h1>
            <?= get_the_content() ?>
        </div>
        <?php get_template_part('elements/social_links'); ?>
</div>
</main>

<?php get_footer(); ?>