Changeset 839608
- Timestamp:
- 01/16/2014 11:10:01 AM (12 years ago)
- Location:
- wordpress-social-ring
- Files:
-
- 16 added
- 6 edited
-
tags/1.2.4 (added)
-
tags/1.2.4/admin (added)
-
tags/1.2.4/admin/admin.php (added)
-
tags/1.2.4/admin/css (added)
-
tags/1.2.4/admin/css/style.css (added)
-
tags/1.2.4/includes (added)
-
tags/1.2.4/includes/library.php (added)
-
tags/1.2.4/includes/widgets.php (added)
-
tags/1.2.4/langs (added)
-
tags/1.2.4/langs/wp_social_ring-it_IT.mo (added)
-
tags/1.2.4/langs/wp_social_ring-it_IT.po (added)
-
tags/1.2.4/readme.txt (added)
-
tags/1.2.4/screenshot-1.png (added)
-
tags/1.2.4/screenshot-2.png (added)
-
tags/1.2.4/screenshot-3.png (added)
-
tags/1.2.4/wp-social-ring.php (added)
-
trunk/includes/library.php (modified) (2 diffs)
-
trunk/includes/widgets.php (modified) (2 diffs)
-
trunk/langs/wp_social_ring-it_IT.mo (modified) (previous)
-
trunk/langs/wp_social_ring-it_IT.po (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-social-ring.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-social-ring/trunk/includes/library.php
r748850 r839608 199 199 200 200 function google_plus_one_html() { 201 $google_html = '<div class="g-plusone" ';201 $google_html = '<div class="g-plusone" data-href="' . $this->post_url . '" '; 202 202 if($this->options['button_counter'] == "horizontal") { 203 203 $google_html .= 'data-size="medium" '; … … 334 334 ?> 335 335 <!-- Social Ring JS Start --> 336 <div id="fb-root"></div><script src="http://connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1"></script> 336 <div id="fb-root"></div> 337 <script>(function(d, s, id) { 338 var js, fjs = d.getElementsByTagName(s)[0]; 339 if (d.getElementById(id)) return; 340 js = d.createElement(s); js.id = id; 341 js.src = "//connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1&appId=265615193468551"; 342 fjs.parentNode.insertBefore(js, fjs); 343 }(document, 'script', 'facebook-jssdk'));</script> 344 337 345 <script type="text/javascript"> 338 346 window.___gcfg = { -
wordpress-social-ring/trunk/includes/widgets.php
r618456 r839608 4 4 function SocialRing_Widget_loader() { 5 5 register_widget('SocialRing_Widget'); 6 } 7 8 add_action('widgets_init', 'SocialRing_Fanbox_Widget_loader'); 9 function SocialRing_Fanbox_Widget_loader() { 10 register_widget('SocialRing_Fanbox_Widget'); 6 11 } 7 12 … … 150 155 } 151 156 157 158 // SOCIALRING FANBOX FACEBOOK 159 160 161 class SocialRing_Fanbox_Widget extends WP_Widget { 162 function SocialRing_Fanbox_Widget() { 163 /* Widget settings. */ 164 $widget_ops = array('classname' => 'SocialRing_Fanbox_Widget', 'description' => __('Use this widget to add the Facebook fanbox to your sidebar', WP_SOCIAL_RING)); 165 166 /* Widget control settings. */ 167 $control_ops = array('id_base' => 'social_ring_fanbox_widget'); 168 169 /* Create the widget. */ 170 $this->WP_Widget('social_ring_fanbox_widget', __('Social Ring Fanbox Widget', WP_SOCIAL_RING), $widget_ops, $control_ops ); 171 } 172 173 function form($instance) { 174 175 $defaults = array( 176 'widget_title' => __('Follow ', WP_SOCIAL_RING).get_bloginfo('name'), 177 'data-href' => '', 178 'data-color-scheme' => 'light', 179 'data-show-faces' => 'true', 180 'data-header' => 'true', 181 'data-stream' => 'false', 182 'data-show-border' => 'true', 183 'border_color' => 'D0D0D0', 184 'box_padding' => 20, 185 'button_margin' => 8 186 ); 187 188 $instance = wp_parse_args( (array) $instance, $defaults ); 189 190 191 ?> 192 <p><i><?php _e('This widget needs a sidebar of 300 pixels or more to display properly',WP_SOCIAL_RING); ?></i></p> 193 <p> 194 <ul> 195 <?php // WIDGET TITLE ?> 196 <li> 197 <input id="<?php echo $this->get_field_id('widget_title'); ?>" name="<?php echo $this->get_field_name('widget_title'); ?>" type="text" value="<?php echo $instance['widget_title']; ?>" /> 198 <label><?php _e('Widget Title',WP_SOCIAL_RING); ?></label> 199 </li> 200 201 <?php // FB PAGE URL ?> 202 <li> 203 <input id="<?php echo $this->get_field_id('data-href'); ?>" name="<?php echo $this->get_field_name('data-href'); ?>" type="text" value="<?php echo $instance['data-href']; ?>" /> 204 <label><?php _e('FB Page URL',WP_SOCIAL_RING); ?></label> 205 </li> 206 207 <?php // COLORSCHEME ?> 208 <li> 209 <select id="<?php echo $this->get_field_id('data-color-scheme'); ?>" name="<?php echo $this->get_field_name('data-color-scheme'); ?>" > 210 <option <?php if($instance['data-color-scheme'] == 'light') { echo 'selected="selected"'; } ?> value="light" >Light</option> 211 <option <?php if($instance['data-color-scheme'] == 'dark') { echo 'selected="selected"'; } ?> value="dark" >Dark</option> 212 </select> 213 <label><?php _e('Colorscheme',WP_SOCIAL_RING); ?></label> 214 </li> 215 216 <?php // SHOW FACES ?> 217 <li> 218 <select id="<?php echo $this->get_field_id('data-show-faces'); ?>" name="<?php echo $this->get_field_name('data-show-faces'); ?>" > 219 <option <?php if($instance['data-show-faces'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option> 220 <option <?php if($instance['data-show-faces'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option> 221 </select> 222 <label><?php _e('Show Faces',WP_SOCIAL_RING); ?></label> 223 </li> 224 225 <?php // HEADER ?> 226 <li> 227 <select id="<?php echo $this->get_field_id('data-header'); ?>" name="<?php echo $this->get_field_name('data-header'); ?>" > 228 <option <?php if($instance['data-header'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option> 229 <option <?php if($instance['data-header'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option> 230 </select> 231 <label><?php _e('Header',WP_SOCIAL_RING); ?></label> 232 </li> 233 234 <?php // STREAM ?> 235 <li> 236 <select id="<?php echo $this->get_field_id('data-stream'); ?>" name="<?php echo $this->get_field_name('data-stream'); ?>" > 237 <option <?php if($instance['data-stream'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option> 238 <option <?php if($instance['data-stream'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option> 239 </select> 240 <label><?php _e('Stream',WP_SOCIAL_RING); ?></label> 241 </li> 242 243 <?php // SHOW BORDER ?> 244 <li> 245 <select id="<?php echo $this->get_field_id('data-show-border'); ?>" name="<?php echo $this->get_field_name('data-show-border'); ?>" > 246 <option <?php if($instance['data-show-border'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option> 247 <option <?php if($instance['data-show-border'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option> 248 </select> 249 <label><?php _e('Show Border',WP_SOCIAL_RING); ?></label> 250 </li> 251 </ul> 252 </p> 253 254 <?php 255 256 } 257 258 function update($new_instance, $old_instance) { 259 // processes widget options to be saved 260 $instance = $old_instance; 261 $instance['widget_title'] = strip_tags( $new_instance['widget_title'] ); 262 $instance['data-href'] = strip_tags( $new_instance['data-href'] ); 263 $instance['data-color-scheme'] = strip_tags( $new_instance['data-color-scheme'] ); 264 $instance['data-show-faces'] = strip_tags( $new_instance['data-show-faces'] ); 265 $instance['data-header'] = strip_tags( $new_instance['data-header'] ); 266 $instance['data-stream'] = strip_tags( $new_instance['data-stream'] ); 267 $instance['data-show-border'] = strip_tags( $new_instance['data-show-border'] ); 268 return $instance; 269 } 270 271 // outputs the content of the widget 272 function widget($args, $instance) { 273 extract($args); 274 echo $before_widget."\n"; 275 if ( isset($instance['widget_title']) ) { 276 echo $before_title . $instance['widget_title'] . $after_title."\n"; 277 } 278 $options = get_option(WP_SOCIAL_RING.'_fanbox_options'); 279 ?> 280 <div class="fb-like-box" data-href="<?php echo $instance['data-href']; ?>" data-width="300" data-colorscheme="<?php echo $instance['data-color-scheme']; ?>" data-show-faces="<?php echo $instance['data-show-faces']; ?>" data-header="<?php echo $instance['data-header']; ?>" data-stream="<?php echo $instance['data-stream']; ?>" data-show-border="<?php echo $instance['data-show-border']; ?>"></div> 281 282 <?php 283 echo $after_widget."\n"; 284 } 285 } 286 152 287 ?> -
wordpress-social-ring/trunk/langs/wp_social_ring-it_IT.po
r618456 r839608 3 3 "Project-Id-Version: WordPress Social Ring\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 2-10-29 00:08+0100\n"6 "PO-Revision-Date: 201 2-10-29 00:12+0100\n"7 "Last-Translator: Niccolo Tapparo \n"5 "POT-Creation-Date: 2014-01-15 18:13+0100\n" 6 "PO-Revision-Date: 2014-01-16 12:06+0100\n" 7 "Last-Translator: Niccolo Tapparo <[email protected]>\n" 8 8 "Language-Team: AlterVista\n" 9 "Language: it_IT\n" 9 10 "MIME-Version: 1.0\n" 10 11 "Content-Type: text/plain; charset=UTF-8\n" … … 12 13 "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e\n" 13 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1.6.3\n" 14 16 "X-Poedit-SearchPath-0: .\n" 15 17 16 #: admin/admin.php:1 6818 #: admin/admin.php:184 17 19 msgid "Social Sharing" 18 20 msgstr "Condivisione Social Network" 19 21 20 #: admin/admin.php:1 7622 #: admin/admin.php:192 21 23 msgid "Social Network Settings" 22 24 msgstr "Impostazioni Condivisione Social Network" 23 25 24 #: admin/admin.php: 18526 #: admin/admin.php:201 25 27 msgid "Extra" 26 28 msgstr "Extra" 27 29 28 #: admin/admin.php: 18830 #: admin/admin.php:204 29 31 msgid "<b>Custom position</b>" 30 32 msgstr "<b>Posizione personalizzata</b>" 31 33 32 #: admin/admin.php:191 33 msgid "You can give Social buttons a custom position by calling this function in your theme." 34 msgstr "I bottoni social possono essere posizionati a piacere inserendo nel tema il seguente codice:" 35 36 #: admin/admin.php:195 34 #: admin/admin.php:207 35 msgid "" 36 "You can give Social buttons a custom position by calling this function in " 37 "your theme." 38 msgstr "" 39 "I bottoni social possono essere posizionati a piacere inserendo nel tema il " 40 "seguente codice:" 41 42 #: admin/admin.php:211 37 43 msgid "Pay Attention: it must called <b>inside the loop</b> to work properly!" 38 msgstr "Attenzione: deve essere utilizzato <b>all'interno del loop</b> per funzionare correttamente." 39 40 #: admin/admin.php:198 44 msgstr "" 45 "Attenzione: deve essere utilizzato <b>all'interno del loop</b> per " 46 "funzionare correttamente." 47 48 #: admin/admin.php:214 41 49 msgid "<b>Shortcode</b>" 42 50 msgstr "<b>Shortcode</b>" 43 51 44 #: admin/admin.php:201 45 msgid "You can also place social buttons inside your posts by using the shortcode:" 46 msgstr "I bottoni social possono essere anche inseriti all'interno dei post utilizzando il seguente shortcode:" 47 48 #: admin/admin.php:206 52 #: admin/admin.php:217 53 msgid "" 54 "You can also place social buttons inside your posts by using the shortcode:" 55 msgstr "" 56 "I bottoni social possono essere anche inseriti all'interno dei post " 57 "utilizzando il seguente shortcode:" 58 59 #: admin/admin.php:222 49 60 msgid "Save Changes" 50 61 msgstr "Salva Impostazioni" 51 62 52 #: admin/admin.php:2 1163 #: admin/admin.php:227 53 64 msgid "Help" 54 65 msgstr "Aiuto" 55 66 56 #: admin/admin.php:2 1867 #: admin/admin.php:234 57 68 msgid "News" 58 69 msgstr "News" 59 70 60 #: admin/admin.php:2 3671 #: admin/admin.php:254 61 72 msgid "http://en.altervista.org/create-free-blog.html?ref=socialring" 62 73 msgstr "http://it.altervista.org/crea-blog-gratis.php?ref=socialring" 63 74 64 #: admin/admin.php:2 3775 #: admin/admin.php:255 65 76 msgid "Create your free blog!" 66 77 msgstr "Crea il tuo blog gratis!" 67 78 68 #: admin/admin.php:2 6679 #: admin/admin.php:284 69 80 msgid "General Settings" 70 81 msgstr "Impostazioni Generali" 71 82 72 #: admin/admin.php:2 7283 #: admin/admin.php:290 73 84 msgid "Buttons" 74 85 msgstr "Pulsanti" 75 86 76 #: admin/admin.php:2 7987 #: admin/admin.php:297 77 88 msgid "Position" 78 89 msgstr "Posizione" 79 90 80 #: admin/admin.php: 28691 #: admin/admin.php:304 81 92 msgid "Show on" 82 93 msgstr "Mostra su" 83 94 84 #: admin/admin.php: 29395 #: admin/admin.php:311 85 96 msgid "Counter" 86 97 msgstr "Contatore" 87 98 88 #: admin/admin.php:3 0099 #: admin/admin.php:318 89 100 msgid "Buttons Language" 90 101 msgstr "Lingua dei Bottoni" 91 102 92 #: admin/admin.php:3 09103 #: admin/admin.php:327 93 104 msgid "Choose sharing buttons position and behavior" 94 msgstr "Scegli la posizione e il comportamento dei pulsanti di condivisione sui social network" 95 96 #: admin/admin.php:317 105 msgstr "" 106 "Scegli la posizione e il comportamento dei pulsanti di condivisione sui " 107 "social network" 108 109 #: admin/admin.php:335 97 110 msgid "Horizontal" 98 111 msgstr "Orizzontale" 99 112 100 #: admin/admin.php:3 21113 #: admin/admin.php:339 101 114 msgid "Vertical" 102 115 msgstr "Verticale" 103 116 104 #: admin/admin.php:3 25117 #: admin/admin.php:343 105 118 msgid "None" 106 119 msgstr "Nessuno" 107 120 108 #: admin/admin.php:3 35121 #: admin/admin.php:353 109 122 msgid "Before content" 110 123 msgstr "Prima del contenuto" 111 124 112 #: admin/admin.php:3 39125 #: admin/admin.php:357 113 126 msgid "After content" 114 127 msgstr "Dopo il contenuto" 115 128 116 #: admin/admin.php:3 50129 #: admin/admin.php:368 117 130 msgid "Facebook Like" 118 131 msgstr "Facebook Mi Piace" 119 132 120 #: admin/admin.php:3 55133 #: admin/admin.php:373 121 134 msgid "Facebook Send" 122 135 msgstr "Facebook Invia" 123 136 124 #: admin/admin.php:3 61137 #: admin/admin.php:379 125 138 msgid "Facebook Share" 126 139 msgstr "Facebook Condividi" 127 140 128 #: admin/admin.php:3 66141 #: admin/admin.php:384 129 142 msgid "Twitter" 130 143 msgstr "Twitter" 131 144 132 #: admin/admin.php:3 67145 #: admin/admin.php:385 133 146 msgid "I use WordPress Social Ring on my blog" 134 147 msgstr "Io uso WordPress Social Ring sul mio blog" 135 148 136 #: admin/admin.php:3 71149 #: admin/admin.php:389 137 150 msgid "Google +1" 138 151 msgstr "Google +1" 139 152 140 #: admin/admin.php:372 141 #: admin/admin.php:384 153 #: admin/admin.php:390 admin/admin.php:407 142 154 msgid "http://wordpress.altervista.org/" 143 155 msgstr "http://wordpress.altervista.org/" 144 156 145 #: admin/admin.php: 377157 #: admin/admin.php:400 146 158 msgid "LinkedIn" 147 159 msgstr "LinkedIn" 148 160 149 #: admin/admin.php: 383161 #: admin/admin.php:406 150 162 msgid "Pin it" 151 163 msgstr "Pin it" 152 164 153 #: admin/admin.php: 384165 #: admin/admin.php:407 154 166 msgid "WordPress tutorials, plugin and themes." 155 167 msgstr "Tutorial WordPress, temi e plugin." 156 168 157 #: admin/admin.php: 388169 #: admin/admin.php:411 158 170 msgid "StumbleUpon" 159 171 msgstr "StumbleUpon" 160 172 161 #: admin/admin.php:4 00173 #: admin/admin.php:423 162 174 msgid "Home" 163 175 msgstr "Home" 164 176 165 #: admin/admin.php:4 04177 #: admin/admin.php:427 166 178 msgid "Pages" 167 179 msgstr "Pagine" 168 180 169 #: admin/admin.php:4 08181 #: admin/admin.php:431 170 182 msgid "Posts" 171 183 msgstr "Post" 172 184 173 #: admin/admin.php:4 12185 #: admin/admin.php:435 174 186 msgid "Categories" 175 187 msgstr "Categorie" 176 188 177 #: admin/admin.php:4 16189 #: admin/admin.php:439 178 190 msgid "Archive" 179 191 msgstr "Archivi" 180 192 181 #: admin/admin.php:4 29193 #: admin/admin.php:452 182 194 msgid "LinkedIn, Pin It and StumbleUpon don't support localization" 183 195 msgstr "LinkedIn, Pin It e StumbleUpon non supportano la traduzione" 184 196 185 #: includes/widgets.php:11 186 msgid "Use this widget to add Tweet, Facebook Like and Google Plus One to your sidebar" 187 msgstr "Usa questo widget per aggiungere il bottoni Tweet, Google +1 e Facebook like alla sidebar" 188 189 #: includes/widgets.php:17 197 #: includes/widgets.php:16 198 msgid "" 199 "Use this widget to add Tweet, Facebook Like and Google Plus One to your " 200 "sidebar" 201 msgstr "" 202 "Usa questo widget per aggiungere il bottoni Tweet, Google +1 e Facebook like " 203 "alla sidebar" 204 205 #: includes/widgets.php:22 190 206 msgid "Social Ring Widget" 191 207 msgstr "Widget Social Ring" 192 208 193 #: includes/widgets.php:2 3209 #: includes/widgets.php:28 includes/widgets.php:176 194 210 msgid "Follow " 195 211 msgstr "Segui " 196 212 197 #: includes/widgets.php:4 0213 #: includes/widgets.php:45 198 214 msgid "This widget needs a sidebar of 200 pixels or more to display properly" 199 msgstr "Il widget ha bisogno di una sidebar di almeno 200 pixel per essere visualizzato correttamente" 200 201 #: includes/widgets.php:44 215 msgstr "" 216 "Il widget ha bisogno di una sidebar di almeno 200 pixel per essere " 217 "visualizzato correttamente" 218 219 #: includes/widgets.php:49 includes/widgets.php:198 202 220 msgid "Widget Title" 203 221 msgstr "Titolo Widget" 204 222 205 #: includes/widgets.php: 46223 #: includes/widgets.php:51 206 224 msgid "Facebook Like Options" 207 225 msgstr "Impostazioni Facebook Like" 208 226 209 #: includes/widgets.php:50 210 #: includes/widgets.php:57 211 #: includes/widgets.php:64 227 #: includes/widgets.php:55 includes/widgets.php:62 includes/widgets.php:69 212 228 msgid "Url" 213 229 msgstr "Url" 214 230 215 #: includes/widgets.php:5 3231 #: includes/widgets.php:58 216 232 msgid "Google Plus One Options" 217 233 msgstr "Impostazioni Google +1" 218 234 219 #: includes/widgets.php:6 0235 #: includes/widgets.php:65 220 236 msgid "Twitter Options" 221 237 msgstr "Impostazioni Twitter" 222 238 223 #: includes/widgets.php: 68239 #: includes/widgets.php:73 224 240 msgid "Text" 225 241 msgstr "Testo" 226 242 227 #: includes/widgets.php:72 228 #: includes/widgets.php:79 243 #: includes/widgets.php:77 includes/widgets.php:84 229 244 msgid "Account" 230 245 msgstr "Account" 231 246 232 #: includes/widgets.php:75 233 msgid "Recommend a Twitter account for users to follow after they share content from your website" 247 #: includes/widgets.php:80 248 msgid "" 249 "Recommend a Twitter account for users to follow after they share content " 250 "from your website" 234 251 msgstr "Dopo la condivisione, consiglia un account Twitter da seguire" 235 252 236 #: includes/widgets.php:8 3253 #: includes/widgets.php:88 237 254 msgid "Description" 238 255 msgstr "Descrizione" 239 256 240 #: includes/widgets.php: 86257 #: includes/widgets.php:91 241 258 msgid "Style Options" 242 259 msgstr "Impostazioni Grafiche" 243 260 244 #: includes/widgets.php:9 0261 #: includes/widgets.php:95 245 262 msgid "Button Margin" 246 263 msgstr "Margine bottoni" 247 264 248 #: includes/widgets.php:9 4265 #: includes/widgets.php:99 249 266 msgid "Widget Padding" 250 267 msgstr "Padding Widget" 251 268 252 #: includes/widgets.php: 98269 #: includes/widgets.php:103 253 270 msgid "Border Color" 254 271 msgstr "Colore Bordo" 272 273 #: includes/widgets.php:164 274 msgid "Use this widget to add the Facebook fanbox to your sidebar" 275 msgstr "Usa questo widget per aggiungere la fanbox di Facebook alla sidebar" 276 277 #: includes/widgets.php:170 278 msgid "Social Ring Fanbox Widget" 279 msgstr "Social Ring Fanbox Widget" 280 281 #: includes/widgets.php:192 282 msgid "This widget needs a sidebar of 300 pixels or more to display properly" 283 msgstr "" 284 "Il widget ha bisogno di una sidebar di almeno 300 pixel per essere " 285 "visualizzato correttamente" 286 287 #: includes/widgets.php:204 288 msgid "FB Page URL" 289 msgstr "Indirizzo Pagina" 290 291 #: includes/widgets.php:213 292 msgid "Colorscheme" 293 msgstr "Colore" 294 295 #: includes/widgets.php:222 296 msgid "Show Faces" 297 msgstr "Mostra Visi" 298 299 #: includes/widgets.php:231 300 msgid "Header" 301 msgstr "Intestazione" 302 303 #: includes/widgets.php:240 304 msgid "Stream" 305 msgstr "Stream" 306 307 #: includes/widgets.php:249 308 msgid "Show Border" 309 msgstr "Mostra bordi" 255 310 256 311 #~ msgid "WordPress Social Ring Settings" -
wordpress-social-ring/trunk/readme.txt
r748850 r839608 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=niccolo%2etapparo%40gmail%2ecom&lc=IT&item_name=Niccolo%20Tapparo&item_number=1¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted 4 4 Tags: Google +1, Facebook, Facebook Like, Facebook Share, Open Graph Meta Tag, Twitter, Retweet, Google+, Social Network, Linkedin 5 Requires at least: 3. 56 Tested up to: 3. 67 Version: 1.2. 38 Stable tag: 1.2. 35 Requires at least: 3.7 6 Tested up to: 3.8 7 Version: 1.2.4 8 Stable tag: 1.2.4 9 9 10 10 WordPress Social Ring adds sharing buttons for Facebook, Twitter, Google+, Pinteres, LinkedIn and StumbleUpon. … … 34 34 35 35 == Changelog == 36 37 = 1.2.4 = 38 39 * Bugfix: Google+ button - fixed sharing post in homepage 40 * Added Facebook Like Box Widget 36 41 37 42 = 1.2.2 = -
wordpress-social-ring/trunk/wp-social-ring.php
r748850 r839608 4 4 Description: Let visitors share posts/pages on Social Networks. 5 5 Author: Niccolò Tapparo 6 Version: 1.2. 36 Version: 1.2.4 7 7 Author URI: http://wordpress.altervista.org/ 8 8 Plugin URI: http://wordpress.altervista.org/wordpress-social-ring/
Note: See TracChangeset
for help on using the changeset viewer.