Created
May 22, 2019 08:01
-
-
Save maddisondesigns/332b23c569e0e22ecb557e8106c0e349 to your computer and use it in GitHub Desktop.
Ephemeris Theme - Filter our social icons to add an email icon on the end
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
<?php | |
/** | |
* Filter our social icons to add an email icon on the end | |
*/ | |
function ephemeris_add_email_to_social_icons( $social_list ) { | |
$social_list[] = sprintf( '<li class="%1$s"><a href="%2$s" title="%3$s"><i class="%4$s"></i><span class="assistive-text">%3$s</span></a></li>', | |
'email', | |
esc_url( home_url( '/contact' ) ), | |
__( 'Get in touch', 'ephemeris' ), | |
'far fa-envelope' | |
); | |
return $social_list; | |
} | |
add_filter( 'ephemeris_social_icons_list', 'ephemeris_add_email_to_social_icons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment