Version Description
- Fix widget for WP 4.3
Download this release
Release Info
Developer | grimmdude |
Plugin | Recent Tweets Widget |
Version | 1.6.4 |
Comparing to | |
See all releases |
Code changes from version 1.6.3 to 1.6.4
- assets/banner-772x250.png +0 -0
- assets/icon-128x128.png +0 -0
- assets/icon-256x256.png +0 -0
- assets/screenshot-1.png +0 -0
- assets/screenshot-2.png +0 -0
- assets/tweet.png +0 -0
- index.php +0 -0
- other_plugins.php +0 -0
- readme.txt +5 -2
- recent-tweets.php +1 -1
- settings.php +0 -0
- tp_twitter_plugin.css +0 -0
- twitteroauth.php +0 -0
- widget.php +1 -1
assets/banner-772x250.png
CHANGED
File without changes
|
assets/icon-128x128.png
CHANGED
File without changes
|
assets/icon-256x256.png
CHANGED
File without changes
|
assets/screenshot-1.png
CHANGED
File without changes
|
assets/screenshot-2.png
CHANGED
File without changes
|
assets/tweet.png
CHANGED
File without changes
|
index.php
CHANGED
File without changes
|
other_plugins.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: noahkagan
|
3 |
Tags: recent tweets, twitter widget, twitter api v1.1, cache, twitter, tweets, social media
|
4 |
Requires at least: 3.4.1
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.6.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -38,6 +38,9 @@ You will need to visit [https://apps.twitter.com/](https://apps.twitter.com/ "Tw
|
|
38 |
|
39 |
== Changelog ==
|
40 |
|
|
|
|
|
|
|
41 |
= 1.6 =
|
42 |
* Fix bug on settings page
|
43 |
|
2 |
Contributors: noahkagan
|
3 |
Tags: recent tweets, twitter widget, twitter api v1.1, cache, twitter, tweets, social media
|
4 |
Requires at least: 3.4.1
|
5 |
+
Tested up to: 4.3
|
6 |
+
Stable tag: 1.6.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
38 |
|
39 |
== Changelog ==
|
40 |
|
41 |
+
= 1.6.4 =
|
42 |
+
* Fix widget for WP 4.3
|
43 |
+
|
44 |
= 1.6 =
|
45 |
* Fix bug on settings page
|
46 |
|
recent-tweets.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Recent Tweets Widget
|
5 |
Plugin URI: http://wordpress.org/extend/plugins/recent-tweets-widget/
|
6 |
Description: Recent Tweets Widget plugin for Twitter API v1.1 with Cache. It uses the new Twitter API v1.1 and stores tweets in the cache. It means that it will read status messages from your database and it doesn't query Twitter.com for every page load so you won't be rate limited. You can set how often you want to update the cache.
|
7 |
-
Version: 1.6.
|
8 |
Author: Noah Kagan
|
9 |
Author URI: http://sumome.com
|
10 |
*/
|
4 |
Plugin Name: Recent Tweets Widget
|
5 |
Plugin URI: http://wordpress.org/extend/plugins/recent-tweets-widget/
|
6 |
Description: Recent Tweets Widget plugin for Twitter API v1.1 with Cache. It uses the new Twitter API v1.1 and stores tweets in the cache. It means that it will read status messages from your database and it doesn't query Twitter.com for every page load so you won't be rate limited. You can set how often you want to update the cache.
|
7 |
+
Version: 1.6.4
|
8 |
Author: Noah Kagan
|
9 |
Author URI: http://sumome.com
|
10 |
*/
|
settings.php
CHANGED
File without changes
|
tp_twitter_plugin.css
CHANGED
File without changes
|
twitteroauth.php
CHANGED
File without changes
|
widget.php
CHANGED
@@ -252,6 +252,6 @@
|
|
252 |
function register_tp_twitter_widget(){
|
253 |
register_widget('tp_widget_recent_tweets');
|
254 |
}
|
255 |
-
add_action('
|
256 |
|
257 |
?>
|
252 |
function register_tp_twitter_widget(){
|
253 |
register_widget('tp_widget_recent_tweets');
|
254 |
}
|
255 |
+
add_action('widgets_init', 'register_tp_twitter_widget', 1)
|
256 |
|
257 |
?>
|