/*
Plugin Name: Socializer Plugin
Version: 1.00
Plugin URI: http://marketing.digital-landscaping.ca/wordpress-tools/wordpress-socializer-plugin
Description:
Add socializer to your Wordpress Posts. Socializer is way to submit your post to all of
the social bookmark networks at once. It include 37 social bookmark networks (digg,
de.licio.us, furl, reddit, backflip, kinja... just to name a few).
Author: Anders Bergman
Author URI: http://marketing.digital-landscaping.ca/wordpress-tools/wordpress-socializer-plugin
*/
/* Copyright 2006 Anders Bergman
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// add socializer link
function socialize_adb($text_adb) {
// default
if ($text_adb == '') {
$text_adb = "Social bookmark this page";
}
$link_adb = "“.$text_adb.”“;
// display link
echo ($link_adb);
}
?>