Created
November 19, 2013 04:47
-
-
Save DevinVinson/7540477 to your computer and use it in GitHub Desktop.
Full width Template for Enfold
This file contains hidden or 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: Full width | |
* 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 fullsize'> | |
<div class='container'> | |
<main class='template-page 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'] = 'entry_without_sidebar'; | |
get_template_part( 'includes/loop', 'page' ); | |
?> | |
<!--end content--> | |
<!--Custom html below the visual editor content--> | |
<!--End /below custom html content--> | |
</main> | |
</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
Hi, I tried out this full width template but with a streched layout my sections are not expanding full width but stop at container width which is in my case 1310. I don't have this problem when using the default template with no sidebar. Any idea what might be the problem? Thanks Jimmy