|
<?php |
|
|
|
/** |
|
* SharedCount Icons |
|
* |
|
*/ |
|
function be_sharedcount_icons( $link ) { |
|
|
|
if( in_array( $link['type'], array( 'facebook', 'facebook_likes', 'facebook_shares' ) ) ) |
|
$link['icon'] = 'icon-facebook'; |
|
|
|
if( 'twitter' == $link['type'] ) { |
|
$link['icon'] = 'icon-twitter'; |
|
$link['count'] = 'Tweet'; |
|
} |
|
|
|
if( 'google' == $link['type'] ) |
|
$link['icon'] = 'icon-googleplus'; |
|
|
|
if( 'print' == $link['type'] ) { |
|
$link['icon'] = 'icon-print'; |
|
$link['count'] = 'Print'; |
|
} |
|
|
|
return $link; |
|
} |
|
add_filter( 'ea_share_count_link', 'be_sharedcount_icons' ); |