Changeset 2065164
- Timestamp:
- 04/08/2019 04:17:03 PM (7 years ago)
- Location:
- fetch-some-tweets/trunk
- Files:
-
- 2 edited
-
Readme.txt (modified) (2 diffs)
-
fetch-some-tweets.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fetch-some-tweets/trunk/Readme.txt
r2020283 r2065164 4 4 Donate link: paypal.me/pixelsandthings 5 5 Requires at least: 4.0 6 Tested up to: 5. 0.36 Tested up to: 5.1.1 7 7 Requires PHP: 7.0 8 8 Stable tag: trunk … … 58 58 * Added check for Twitter API timeout. 59 59 60 = V1.4 = 61 * Updated HTML Markup. 62 60 63 == Upgrade Notice == -
fetch-some-tweets/trunk/fetch-some-tweets.php
r2020305 r2065164 10 10 Plugin URI: http://www.pixelsandthings.co.uk 11 11 Description: JSON Driven PHP Twitter Feed - Twitter API 1.1 12 Version: 1.3. 312 Version: 1.3.4 13 13 Author: Pixels & Things 14 14 Author URI: https://www.pixelsandthings.co.uk … … 363 363 364 364 // Tweets 365 $tweet_user_timeline .= '< ulclass="tweet-list">';365 $tweet_user_timeline .= '<div class="tweet-list">'; 366 366 367 367 // Minimum number of Tweets from 'Settings' … … 408 408 $tweet_user_favorite_count = $tweet->favorite_count; 409 409 410 $tweet_user_timeline .= '< liclass="tweet" id="' .$tweet_id. '">';410 $tweet_user_timeline .= '<article class="tweet" id="' .$tweet_id. '">'; 411 411 412 412 $tweet_user_timeline .= '<div class="tweet-content">'; … … 487 487 $tweet_user_timeline .= '</div>'; 488 488 489 $tweet_user_timeline .= '</ li>';489 $tweet_user_timeline .= '</article>'; 490 490 491 491 endfor; 492 492 493 $tweet_user_timeline .= '</ ul>';493 $tweet_user_timeline .= '</div>'; 494 494 495 495 // Feed Owner Data - $screen_name
Note: See TracChangeset
for help on using the changeset viewer.