Updated for public server.
This commit is contained in:
10
wp-content/themes/shopire/page-templates/frontpage.php
Normal file
10
wp-content/themes/shopire/page-templates/frontpage.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
/**
|
||||
Template Name: Frontpage
|
||||
*/
|
||||
|
||||
get_header();
|
||||
|
||||
do_action( 'Fable_Extra_Shopire_frontpage', false);
|
||||
|
||||
get_footer(); ?>
|
||||
24
wp-content/themes/shopire/page-templates/page-full-width.php
Normal file
24
wp-content/themes/shopire/page-templates/page-full-width.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
Template Name: Fullwidth Page
|
||||
**/
|
||||
|
||||
get_header();
|
||||
?>
|
||||
<section class="wf-py-default">
|
||||
<div class="wf-container">
|
||||
<div class="wf-row wf-g-5">
|
||||
<div class="wf-col-lg-12 wf-col-md-12 wf-col-12 wow fadeInUp">
|
||||
<?php
|
||||
the_post(); the_content();
|
||||
|
||||
if( $post->comment_status == 'open' ) {
|
||||
comments_template( '', true ); // show comments
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<?php get_footer(); ?>
|
||||
|
||||
18
wp-content/themes/shopire/page-templates/pagebuilder.php
Normal file
18
wp-content/themes/shopire/page-templates/pagebuilder.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
Template Name: Builder Page
|
||||
**/
|
||||
|
||||
get_header();
|
||||
?>
|
||||
<section id="page-builder" class="theme-builder">
|
||||
<?php
|
||||
the_post(); the_content();
|
||||
|
||||
if( $post->comment_status == 'open' ) {
|
||||
comments_template( '', true ); // show comments
|
||||
}
|
||||
?>
|
||||
</section>
|
||||
<?php get_footer(); ?>
|
||||
|
||||
Reference in New Issue
Block a user