Version Description
- Compatible with wp5.1
- Minor bug fixed.
Download this release
Release Info
Developer | weblizar |
Plugin | Weblizar Twitter Widget |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.1 to 1.8.2
- readme.txt +5 -2
- twitter-tweets.php +1 -1
- twitter-tweets_shortcode.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: weblizar
|
|
3 |
Donate link: https://www.weblizar.com/
|
4 |
Tags: twitter, tweets, twitter tweets, twitter widget, twitter wordPress plugin, twitter feed
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -99,6 +99,9 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
99 |
== Changelog ==
|
100 |
|
101 |
For more information, see Weblizar(https://weblizar.com/)
|
|
|
|
|
|
|
102 |
|
103 |
= 1.8.1 =
|
104 |
- Update : change layout of Tweet block on both plugin setting dashboard and frontend
|
3 |
Donate link: https://www.weblizar.com/
|
4 |
Tags: twitter, tweets, twitter tweets, twitter widget, twitter wordPress plugin, twitter feed
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 5.1
|
7 |
+
Stable tag: 1.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
99 |
== Changelog ==
|
100 |
|
101 |
For more information, see Weblizar(https://weblizar.com/)
|
102 |
+
= 1.8.2 =
|
103 |
+
- Compatible with wp5.1
|
104 |
+
- Minor bug fixed.
|
105 |
|
106 |
= 1.8.1 =
|
107 |
- Update : change layout of Tweet block on both plugin setting dashboard and frontend
|
twitter-tweets.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Weblizar Twitter Tweets
|
4 |
-
* Version: 1.8.
|
5 |
* Description: Weblizar Twitter Tweets plugin for WordPress. You can use this to display real time Twitter feeds on any where on your webiste by using shortcode or widgets
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://www.weblizar.com/
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Weblizar Twitter Tweets
|
4 |
+
* Version: 1.8.2
|
5 |
* Description: Weblizar Twitter Tweets plugin for WordPress. You can use this to display real time Twitter feeds on any where on your webiste by using shortcode or widgets
|
6 |
* Author: Weblizar
|
7 |
* Author URI: https://www.weblizar.com/
|
twitter-tweets_shortcode.php
CHANGED
@@ -124,7 +124,7 @@ function wl_twitter_tweets_api() {
|
|
124 |
<p class="wl_tweet">
|
125 |
<img class="align-self-start mr-3" src="<?php if( isset( $user->profile_image_url_https ) ) {echo $profile_image_url_https;} ?>"
|
126 |
alt="">
|
127 |
-
<a href="https://twitter.com/<?php if( isset( $user->screen_name ) ) {
|
128 |
<?php if( isset( $user->screen_name ) ) {echo "@" . $screen_name;} ?>
|
129 |
</a>
|
130 |
</p>
|
@@ -204,7 +204,7 @@ function wl_twitter_tweets_api() {
|
|
204 |
<?php
|
205 |
if ( isset( $status->favorite_count ) ) {
|
206 |
_e( 'Like', twitter_tweets );
|
207 |
-
echo "
|
208 |
}
|
209 |
?>
|
210 |
</a>
|
124 |
<p class="wl_tweet">
|
125 |
<img class="align-self-start mr-3" src="<?php if( isset( $user->profile_image_url_https ) ) {echo $profile_image_url_https;} ?>"
|
126 |
alt="">
|
127 |
+
<a href="https://twitter.com/<?php if( isset( $user->screen_name ) ) {echo $screen_name;} ?>">
|
128 |
<?php if( isset( $user->screen_name ) ) {echo "@" . $screen_name;} ?>
|
129 |
</a>
|
130 |
</p>
|
204 |
<?php
|
205 |
if ( isset( $status->favorite_count ) ) {
|
206 |
_e( 'Like', twitter_tweets );
|
207 |
+
echo "($status->favorite_count)";
|
208 |
}
|
209 |
?>
|
210 |
</a>
|