Version Description
- Fixed: notice warning message "is_comment_popup" #33
Download this release
Release Info
Developer | utahvich |
Plugin | WP Social Bookmarking Light |
Version | 1.8.5 |
Comparing to | |
See all releases |
Code changes from version 1.8.4 to 1.8.5
- modules/content.php +1 -1
- readme.txt +4 -1
- wp-social-bookmarking-light.php +1 -1
modules/content.php
CHANGED
@@ -123,7 +123,7 @@ function wp_social_bookmarking_light_wp_head()
|
|
123 |
*/
|
124 |
function wp_social_bookmarking_light_is_enabled()
|
125 |
{
|
126 |
-
if (is_feed() || is_404() || is_robots() ||
|
127 |
return false;
|
128 |
}
|
129 |
|
123 |
*/
|
124 |
function wp_social_bookmarking_light_is_enabled()
|
125 |
{
|
126 |
+
if (is_feed() || is_404() || is_robots() || (function_exists( 'is_ktai' ) && is_ktai())) {
|
127 |
return false;
|
128 |
}
|
129 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://github.com/utahta/WP-Social-Bookmarking-Light/wiki/Donate
|
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread, line, pocket, Pinterest
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.8.
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
@@ -61,6 +61,9 @@ This is the list of used social sites:
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
64 |
= 1.8.4 =
|
65 |
* Fixed: Included unnecessary string "twitter{count}" [#32](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/32)
|
66 |
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread, line, pocket, Pinterest
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.8.5
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
61 |
|
62 |
== Changelog ==
|
63 |
|
64 |
+
= 1.8.5 =
|
65 |
+
* Fixed: notice warning message "is_comment_popup" [#33](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/33)
|
66 |
+
|
67 |
= 1.8.4 =
|
68 |
* Fixed: Included unnecessary string "twitter{count}" [#32](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/32)
|
69 |
|
wp-social-bookmarking-light.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
+
Version: 1.8.5
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|