Skip to content

Instantly share code, notes, and snippets.

@AnnaCrumina
Forked from crumina/Before header
Last active August 29, 2015 14:16
Show Gist options
  • Save AnnaCrumina/b107f3a925b148f0c6a6 to your computer and use it in GitHub Desktop.
Save AnnaCrumina/b107f3a925b148f0c6a6 to your computer and use it in GitHub Desktop.
<?php
function custom_before_header_bar()
{ ?>
<div style="background:gray; "> <!-- Full width row -->
<div class="row"><div class="large-12 small-12 columns">
<!-- Your Content Will be here -->
</div></div>
</div> <!-- End Full width row -->
<?php }
add_action('reactor_header_before', 'custom_before_header_bar', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment