FrameShift: Custom Social Icons
<?php
/**
* Custom Social Icons
*/
add_filter('frameshift_social_icons', 'custom_social_icons', 50);
function custom_social_icons($social_icons) {
$social_icons = array(
'rss' => array(
'id' => 'rss',
'name' => __( 'RSS', 'frameshift' ),
'title' => __( 'Subscribe to RSS', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/rss.png'
),
'twitter' => array(
'id' => 'twitter',
'name' => __( 'Twitter', 'frameshift' ),
'title' => __( 'Follow us on Twitter', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/twitter.png'
),
'facebook' => array(
'id' => 'facebook',
'name' => __( 'Facebook', 'frameshift' ),
'title' => __( 'Friend us on Facebook', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/facebook.png'
),
'gplus' => array(
'id' => 'gplus',
'name' => __( 'Google+', 'frameshift' ),
'title' => __( 'Follow us on Google+', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/google+.png'
),
'skype' => array(
'id' => 'skype',
'name' => __( 'Skype', 'frameshift' ),
'title' => __( 'Connect with us on Skype', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/skype.png'
),
'vimeo' => array(
'id' => 'vimeo',
'name' => __( 'Vimeo', 'frameshift' ),
'title' => __( 'See our videos on Vimeo', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/vimeo.png'
),
'youtube' => array(
'id' => 'youtube',
'name' => __( 'YouTube', 'frameshift' ),
'title' => __( 'See our video on YouTube', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/youtube.png'
),
'delicious' => array(
'id' => 'delicious',
'name' => __( 'Delicious', 'frameshift' ),
'title' => __( 'Find us on Delicious', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/delicious.png'
),
'digg' => array(
'id' => 'digg',
'name' => __( 'Digg', 'frameshift' ),
'title' => __( 'Find us on Digg', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/digg.png'
),
'technorati' => array(
'id' => 'technorati',
'name' => __( 'Technorati', 'frameshift' ),
'title' => __( 'Find us on Technorati', 'frameshift' ),
'icon' => get_stylesheet_directory_uri() . '/images/social/technorati.png'
)
);
return $social_icons;
}