Adding Sites to Sociable
-
While Sociable comes with a pretty large set of sites, there are always people that want to add their own. While this is pretty easy to do, you’d have to update the plugin every time it’s updated, which is quite often, so that’s not really a workable solution.
Today, I’ve fixed that. I’ve just submitted version 3.4 to www.ads-software.com, this version makes it possible to add sites to Sociable from either a plugin or from your theme.
You’d simply have to do the following:
function sociable_add_sites( $known_sites ) {
$known_sites[‘Joost’] = array(
‘favicon’ => ‘https://netdna.yoast.com/images/joost.jpg’,
‘url’ => ‘https://yoast.com/submit-to-yoast’,
‘description’ => ‘What else would you do?’
);
return $known_sites;
}
add_filter(‘sociable_known_sites’,’sociable_add_sites’,10,1);
As you can see you can easily add your own sites now. The favicon URL can be both an absolute URL to the file, or just a filename. If it’s just a filename Sociable will look for it in the image directory you’ve defined in the backend.You could also use this functionality to change the icon for a certain site, just add the following to the code above (before the return statement):
$known_sites[‘del.icio.us’][‘favicon’] = ‘https://netdna.yoast.com/images/joost.jpg’;
As said, you can either add this code into a plugin, or put it into your themes functions.php file. After doing that, the site will become available for you to pick in the Sociable admin panel.Update: version 3.4.1 also fixes the Sphinn submit button, to work with the new version of Sphinn.
- The topic ‘Adding Sites to Sociable’ is closed to new replies.