Skip to content

Instantly share code, notes, and snippets.

@crumina
Last active May 31, 2016 15:17
Show Gist options
  • Save crumina/ea685e21ed2f3b573f1619fc2989d058 to your computer and use it in GitHub Desktop.
Save crumina/ea685e21ed2f3b573f1619fc2989d058 to your computer and use it in GitHub Desktop.
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