Skip to content

Instantly share code, notes, and snippets.

@AnnaCrumina
Forked from crumina/functions.php
Last active August 29, 2015 14:21
Show Gist options
  • Save AnnaCrumina/e80e09d899955d0f80e5 to your computer and use it in GitHub Desktop.
Save AnnaCrumina/e80e09d899955d0f80e5 to your computer and use it in GitHub Desktop.
/**
* 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