Last active
May 8, 2018 20:24
-
-
Save pablo-sg-pacheco/90f11f0660f49c07bc8f85de260ab5fa to your computer and use it in GitHub Desktop.
Charity Theme - Add content before moving articles on header
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
add_action( 'hb_charity_top_header', function(){ | |
?> | |
<div class="topheader" style="color:#fff;"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-12"> | |
<?php echo __( 'My Articles', 'hb-charity' ); ?> | |
</div> | |
</div> | |
</div> | |
</div> | |
<?php | |
}, 9 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment