Last active
August 29, 2015 14:21
-
-
Save crumina/5ff33a20d9a0a56cd5b3 to your computer and use it in GitHub Desktop.
[Onetouch] Stunning header on page template "For Metro Visual builder"
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
/** | |
* Stunning header | |
* in header.php | |
* | |
* @since 1.0.0 | |
*/ | |
function frontpage_st_header () | |
{ | |
if (is_page_template('page-templates/fullwidth-page.php') ): | |
?> | |
<div class="row" id="stunning-header"> | |
<div class="<?php reactor_columns(12); ?>"> | |
<div class="inner"> | |
<?php reactor_page_header(); ?> | |
</div> | |
</div> | |
</div> | |
<?php endif; | |
} | |
add_action('reactor_header_after', 'frontpage_st_header', 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment