Skip to content

Instantly share code, notes, and snippets.

@aslamahamed13
Last active January 26, 2019 17:55
Show Gist options
  • Save aslamahamed13/4b7ffd1d5d3cdb751c6ca0236b13f722 to your computer and use it in GitHub Desktop.
Save aslamahamed13/4b7ffd1d5d3cdb751c6ca0236b13f722 to your computer and use it in GitHub Desktop.
Electro - add Line social icon in footer
add_filter( 'electro_set_social_networks', 'ec_child_add_icon', 90 );
function ec_child_add_icon( $args ) {
$args['line'] = array(
'label' => 'line',
'icon' => 'fab fa-line',
'id' => 'line_link',
'link' => 'https://at.line.me/'
);
return $args;
}
.footer-social-icons .social-icons .fa-line:hover {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment