Last active
May 31, 2016 15:17
-
-
Save crumina/ea685e21ed2f3b573f1619fc2989d058 to your computer and use it in GitHub Desktop.
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
function _remove_soc_icons() { | |
add_action('reactor_header_before', '_new_custom_soc_icons', 2); | |
remove_action('reactor_header_after', 'crumina_social_icons', 2); | |
} | |
add_action( 'init', '_remove_soc_icons', 1 ); | |
function _new_custom_soc_icons(){ | |
echo '<div class="row"><div class="large-12 columns"> | |
<div id="panel"> | |
<div id="soc-icons-wrap" class="' . $class . '">'.'<span class="header-phone"><i class="fa fa-phone-square"></i> 804-442-STAR (7827)</span>'; | |
crum_social_networks(); | |
echo '</div></div></div></div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment