Visit the Bookmarkify Widget Viewer to try out different options and themes.
NOTE - If you are only using Bookmarkify within your WordPress blog, you don't need to read this.
Bookmarkify also works outside of WordPress. Use it on any PHP page on your web site. To do so include the bookmarkify.php file and set your options with the following code:
require_once("/blog/wp-content/plugins/bookmarkify.php");
$bookmarkifyWidgetTitle="Bookmark and Share";
$bookmarkifySelectedLinks="Digg;Facebook;Google;MySpace;StumbleUpon;Yahoo!;Email;";
$bookmarkifyFeedURL="http://www.myblog.com/feed";
$bookmarkifyFeedBurnerID="1234567";
$bookmarkifyMoreLink=1;
$bookmarkifyHideBrand=1;
$bookmarkifyCenterFade=1;
$bookmarkifyDocType="XHTML";
$bookmarkifyIconDir="http://www.myblog.com/wp-content/plugins/bookmarkify";
To simplify this, you can add this code within a PHP file that you already include throughout your site, like a header.
If your blog is in a different location, adjust the parameter of the 'require_once' function call accordingly. If you don't use WordPress, just place the bookmarkify.php file with your other PHP scripts and reference it there.
If you use WordPress and PHP, the Bookmarkify options page in WordPress will generate the code above for you so that you can make sure the Bookmarkify widget is consistent across your entire site.
To insert the widget simply add the following PHP function call at the place on your page that you want the Bookmarkify widget to appear.
bookmarkifyIt($title, $url);
Replace $title with the your page's title and $url with the URL of the page.
Here is the code using the GARA home page as an example.
bookmarkifyIt("GARA Systems", "http://www.gara.com/");
To use the sidebar version of the widget add the following PHP function call at the place in your sidebar that you want it to appear:
bookmarkifyItList($title, $url);
Replace $title with your blog's title and $url with your blog's URL.
Here is the code using the GARA Blog as an example:
bookmarkifyItList("The GARA Blog", "http://www.gara.com/blog/");
Please contact me with your comments, questions and suggestions.
Copyright 2008 GARA Systems, Inc
Bookmarkify is released under the GNU General Public License. You are free to download, use, modify and redistribute this code.
Additional Contributors: ThaNerd




