ASong2U_Web/wp-content/themes/score/page-new-dedication.php

30 lines
557 B
PHP

<?php
/*
Template Name: New dedication
*/
get_header();
global $gp_settings;
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if($gp_settings['title'] == "Show") { ?><h1 class="page-title"><?php the_title(); ?></h1><?php } ?>
<?php require_once('post-meta.php'); ?>
<div id="content">
<div id="post-content">
<?php $dfs = new DedicationFromSite(); $dfs->form(); ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>