Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AnnaCrumina/d0d67cef7f78b9e199c6 to your computer and use it in GitHub Desktop.
Save AnnaCrumina/d0d67cef7f78b9e199c6 to your computer and use it in GitHub Desktop.
add_action( 'init', 'crum_remove_socicons' );
function crum_remove_socicons() {
remove_action( 'reactor_header_after', 'crumina_social_icons', 2 );
}
/**
* Phone number
* in header.php
*
* @since 1.0.0
*/
function crumina_phone_number()
{
echo '<div class="row"><div class="large-12 columns">';
echo '<span class="header-phone-number">your-phone-number</span>';
echo '</div></div>';
}
add_action('reactor_header_after', 'crumina_phone_number', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment