Changeset 702235
- Timestamp:
- 04/23/2013 01:23:36 PM (13 years ago)
- Location:
- my-coderwall-badges/trunk
- Files:
-
- 3 edited
-
cw_badges.php (modified) (1 diff)
-
cwbclass.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
my-coderwall-badges/trunk/cw_badges.php
r550252 r702235 4 4 Description: gets your badges from coderwall website and let you show them on your blog. 5 5 Author: Francesco Lentini 6 Version: 0. 56 Version: 0.6 7 7 Plugin URI: https://github.com/flentini/my-coderwall-badges 8 Author URI: http:// spugna.org/tpk8 Author URI: http://github.com/flentini 9 9 */ 10 10 -
my-coderwall-badges/trunk/cwbclass.php
r550252 r702235 55 55 56 56 protected function init_badges() { 57 $cwbadges = wp_remote_get('http ://coderwall.com/'.$this->username.'.json');57 $cwbadges = wp_remote_get('https://coderwall.com/'.$this->username.'.json', array( 'sslverify' => false)); 58 58 if(!empty($cwbadges) && !is_wp_error($cwbadges)){ 59 59 $badges_string = '<div>'; -
my-coderwall-badges/trunk/readme.txt
r550252 r702235 4 4 Requires at least: 3.0 5 5 Tested up to: 3.3.1 6 Stable tag: 0. 56 Stable tag: 0.6 7 7 8 8 gets your badges from coderwall website and let you show them on your blog. … … 13 13 Install, activate the plugin and set your username in the CW Badges Panel. 14 14 You can display your badges using the [cwbadges] shortcode inside your pages/posts. 15 You also have these functions available:16 17 echo $cwb->get_username() -> display username18 19 echo $cwb->get_name() -> display name20 21 echo $cwb->get_location() -> display location22 23 echo $cwb->get_badges() -> display user badges24 25 You can call them inside your theme's files.26 27 15 There's also a widget which waits to be activated by you in the theme options. 28 16 … … 39 27 == Changelog == 40 28 29 = 0.6 = 30 * fixed ssl verification issue (thanks to tmeinlschmidt) 31 41 32 = 0.5 = 42 * Added option to show Coderwall endorsements (http://coderwall.com/blog/2012-01-16-the-hacker-version-of-an-embeddable-social-button) 33 * Added option to show Coderwall endorsements (http://coderwall.com/blog/2012-01-16-the-hacker-version-of-an-embeddable-social-button) (thanks to picandocodigo) 43 34 44 35 = 0.4 = 45 * German translation 36 * German translation (thanks to bountin) 46 37 47 38 = 0.3 = 48 * Added a simple widget. 39 * Added a simple widget. (thanks to picandocodigo) 49 40 50 41 = 0.2 =
Note: See TracChangeset
for help on using the changeset viewer.