AddToAny Share Buttons - Version 0.2

Version Description

Download this release

Release Info

Developer micropat
Plugin Icon 128x128 AddToAny Share Buttons
Version 0.2
Comparing to
See all releases

Version 0.2

Files changed (2) hide show
  1. add-to-any/README.txt +32 -0
  2. add-to-any/add-to-any.php +29 -0
add-to-any/README.txt ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Add to Any ===
2
+ Contributors: micropat
3
+ Donate link:
4
+ Tags: bookmarking, social bookmarking, bookmark, button, addtoany, add, any, NewsGator, My, Yahoo, Google, Rojo, Excite, MIX, iTunes, PodNova, Newsburst, WINKsite, Hubdog, Feedalot, NewsIsFree, FireAnt, KlipFolio, MyHommy, NETime, Channel, Feed, Mailer, Rocket, RSS, Reader, Newshutch, My, Hosted, reBlog, FeedMarker, FeedBucket, FeedBlitz, Bloglines, Windows, Live, Protopage, News, Feeds, My, AOL, TheFreeDictionary, Squeet, Bitty, Browser, Preview, LiteFeeds, Gritwire, FeedLounge, FeedReader, FeedOnSite, i, metaRSS, RssFwd, Cheetah, News, SimplyHeadlines, Zhua, Xia, Inclue!, IzyNews, mobilerss, Fyuze, Google, Toolbar, Blox0r, Netvibes, Pageflakes, My, MSN, Odeo, My, EarthLink, Democracy, Player, Mister-Wong, ZapTXT, Newgie, NewsAlloy, Plusmo, Eskobo, FeedNut, Alesti, Rasasa, AvantGo, FeedHugger, FeedShow, 2RSS, Waggr, Aggregato, NewsMob, FeedFeeds, Toppica, My, Yahoo, Bookmarks, Technorati, Favorites, del.icio.us, Furl, Taggle, Facebook, Netvouz, Wink, Ma.gnolia, Jots, Taggly, BlogMarks, OpenBM, Tailrank, Windows, Live, Favorites, Stumble, Upon, Protopage, Bookmarks, Shadows, Blinklist, Segnalo, Slashdot, RawSugar, Scuttle, Smarking, Jookster, Feedmarker, Bookmarks, OnlyWire, unalog, Squidoo, Google, Bookmarks, Spurl, Linkatopia, Simpy, BuddyMarks, Ask.com, MyStuff, Maple, Wists, Kinja, Gravee, Connotea, Backflip, MyLinkVault, SiteJot, Bitty, Browser, dzone, Diigo, diglog, Digg, Reddit, NewsVine, NowPublic, Hugg, Care2, News, Netscape.com, Get, News, Feeds, Feedo, Style
5
+ Requires at least: 2.0
6
+ Tested up to: 2.1.2
7
+ Stable tag: 0.2
8
+
9
+ Lets readers bookmark your posts using any bookmark manager.
10
+
11
+ == Description ==
12
+
13
+ Lets readers bookmark your posts using any bookmark manager such as del.icio.us.
14
+
15
+ == Installation ==
16
+
17
+ 1. Upload `add-to-any` to the `/wp-content/plugins/` directory
18
+ 1. Activate the plugin through the 'Plugins' menu in WordPress
19
+
20
+ == Frequently Asked Questions ==
21
+
22
+ = How long will this service be around? =
23
+
24
+ Forever.
25
+
26
+ = How often is the list of services updated? =
27
+
28
+ Constantly. We're always in search of new feed readers and bookmark managers. Let us know if you find one that isn't listed.
29
+
30
+ == Screenshots ==
31
+
32
+ Sorry, no Add to Any screenshots just yet!
add-to-any/add-to-any.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?
2
+ /*
3
+ Plugin Name: Add to Any: Bookmark Button
4
+ Plugin URI: http://www.addtoany.com/
5
+ Description: Lets readers bookmark your posts using any bookmark manager.
6
+ Version: .2
7
+ Author: MicroPat
8
+ Author URI: http://www.addtoany.com/contact/
9
+ */
10
+
11
+ function add_to_any_link() {
12
+ ob_start();
13
+ ?>
14
+ <a href="http://www.addtoany.com/?sitename=<? bloginfo('name'); ?>&amp;siteurl=<? bloginfo('siteurl'); ?>&amp;linkname=<? the_title(); ?>&amp;linkurl=<? echo get_permalink($id); ?>&amp;type=page"><img src="http://www.addtoany.com/add-bm.gif" width="91" height="17" border="0" title="Add to any service" alt="Add to any service"/></a>
15
+ <?
16
+ $link = ob_get_contents();
17
+ ob_end_clean();
18
+ return $link;
19
+ }
20
+
21
+ function a2a_add_to_any_to_content($content) {
22
+ $content .= '<p class="a2a_link">'.add_to_any_link('return').'</p>';
23
+ return $content;
24
+ }
25
+
26
+ add_action('the_content', 'a2a_add_to_any_to_content');
27
+ add_action('the_content_rss', 'a2a_add_to_any_to_content');
28
+
29
+ ?>