plugin page. Author: Alexander Dichev Author URI: http://dichev.com/ */ function add_me($content) { // Hello global $post; // DIV-width in percents or pixels (Example: "90%" or "450px") $my_width = '100%'; // Alignment of the buttons ("left", "right" or "center") $my_align = 'center'; // Location of the folder with the icons of the buttons $my_images_folder = get_settings('home') . '/wp-content/plugins/add-me-dichev/images/'; // We take the post details in the following variables $my_link = get_permalink($post->ID); $my_title = get_the_title($post->ID); // And now we siply render all the links. // You can add or delete (comment) some lines to modify the buttons // If you add a new network button // do not forget to upload an image for the button // default image size is 16 x 16 pixels if ( !is_feed() && !is_page() ) { $content .= "\n\n" . '' . "\n" . '' . "\n" . '
' . "\n" . 'Add This!' . "\n" . 'Blinkbits' . "\n" . 'Blinklist' . "\n" . 'Blogmarks' . "\n" . 'BlogMemes' . "\n" . 'BlueDot' . "\n" . 'BlogLines' . "\n" . 'co.mments' . "\n" . 'Connotea' . "\n" . 'del.icio.us' . "\n" . 'de.lirio.us' . "\n" . 'Digg' . "\n" . 'Diigo' . "\n" . 'DZone' . "\n" . 'Facebook' . "\n" . 'FeedMeLinks' . "\n" . 'Folkd.com' . "\n" . 'Fleck' . "\n" . 'Furl' . "\n" . 'Google' . "\n" . 'Google Reader' . "\n" . 'icio.de' . "\n" . 'IndianPad' . "\n" . 'Leonaut' . "\n" . 'LinkaGoGo' . "\n" . 'Linkarena' . "\n" . 'Linkter' . "\n" . 'Magnolia' . "\n" . 'Mister Wong' . "\n" . 'MyShare' . "\n" . 'Ask.com' . "\n" . 'MyStuff Ask.com' . "\n" . 'Yahoo! MyWeb' . "\n" . 'Netscape' . "\n" . 'Netvouz' . "\n" . 'Newsgator' . "\n" . 'Newsvine' . "\n" . 'Oneview.de' . "\n" . 'RawSugar' . "\n" . 'reddit' . "\n" . 'Rojo' . "\n" . 'Segnalo' . "\n" . 'Shadows' . "\n" . 'Simpy' . "\n" . 'SlashDot' . "\n" . 'Smarking' . "\n" . 'Sphere' . "\n" . 'Spurl' . "\n" . 'Startaid' . "\n" . 'StumbleUpon' . "\n" . 'TailRank' . "\n" . 'Technorati' . "\n" . 'ThisNext' . "\n" . 'yigg.de' . "\n" . 'Webnews.de' . "\n" . 'ReadMe.ru' . "\n" . 'Dobavi.com' . "\n" . 'Dao.bg' . "\n" . 'Lubimi.com' . "\n" . 'Ping.bg' . "\n" . 'Pipe.bg' . "\n" . 'Svejo.net' . "\n" . 'Web-bg.com' . "\n" . 'Plugin by Dichev.com' . "\n" . '
' . "\n" . '' . "\n\n"; } return $content; } add_filter('the_content', 'add_me', 1097); ?>