Created
October 26, 2013 22:32
-
-
Save DevinVinson/7175338 to your computer and use it in GitHub Desktop.
Custom page template for Enfold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Template Name: Example Custom Template | |
* See the codex entry on custom template for more information: http://codex.wordpress.org/Page_Templates#Custom_Page_Template | |
* | |
* Add html above or below the_content inside the comments | |
* Add php snippets as well with their own opening and closing php | |
*/ | |
global $avia_config, $post; | |
if ( post_password_required() ) | |
{ | |
get_template_part( 'page' ); exit(); | |
} | |
/* | |
* get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory. | |
*/ | |
get_header(); | |
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(); | |
?> | |
<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'> | |
<div class='container'> | |
<main class='template-page content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'page'));?>> | |
<!--Custom html above the visual editor content--> | |
<!--End /above custom html content--> | |
<?php | |
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar'; | |
get_template_part( 'includes/loop', 'page' ); | |
?> | |
<!--end content--> | |
<!--Custom html below the visual editor content--> | |
<!--End /below custom html content--> | |
</main> | |
<?php | |
//get the sidebar if the page options want it | |
$avia_config['currently_viewing'] = 'page'; | |
get_sidebar(); | |
?> | |
</div><!--end container--> | |
</div><!-- close default .container_wrap element --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment