Skip to content

Instantly share code, notes, and snippets.

@crumina
Last active August 29, 2015 14:21
Show Gist options
  • Save crumina/5ff33a20d9a0a56cd5b3 to your computer and use it in GitHub Desktop.
Save crumina/5ff33a20d9a0a56cd5b3 to your computer and use it in GitHub Desktop.
[Onetouch] Stunning header on page template "For Metro Visual builder"
/**
* 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