Plugin Directory

Changeset 2065164


Ignore:
Timestamp:
04/08/2019 04:17:03 PM (7 years ago)
Author:
pixelsandthings
Message:

Updated HTML Markup

Location:
fetch-some-tweets/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fetch-some-tweets/trunk/Readme.txt

    r2020283 r2065164  
    44Donate link: paypal.me/pixelsandthings
    55Requires at least: 4.0
    6 Tested up to: 5.0.3
     6Tested up to: 5.1.1
    77Requires PHP: 7.0
    88Stable tag: trunk
     
    5858* Added check for Twitter API timeout.
    5959
     60= V1.4 =
     61* Updated HTML Markup.
     62
    6063== Upgrade Notice ==
  • fetch-some-tweets/trunk/fetch-some-tweets.php

    r2020305 r2065164  
    1010    Plugin URI:        http://www.pixelsandthings.co.uk
    1111    Description:       JSON Driven PHP Twitter Feed - Twitter API 1.1
    12     Version:           1.3.3
     12    Version:           1.3.4
    1313    Author:            Pixels & Things
    1414    Author URI:        https://www.pixelsandthings.co.uk
     
    363363
    364364                // Tweets
    365                 $tweet_user_timeline .= '<ul class="tweet-list">';
     365                $tweet_user_timeline .= '<div class="tweet-list">';
    366366
    367367                // Minimum number of Tweets from 'Settings'
     
    408408                    $tweet_user_favorite_count = $tweet->favorite_count;
    409409
    410                     $tweet_user_timeline .= '<li class="tweet" id="' .$tweet_id. '">';
     410                    $tweet_user_timeline .= '<article class="tweet" id="' .$tweet_id. '">';
    411411
    412412                        $tweet_user_timeline .= '<div class="tweet-content">';
     
    487487                        $tweet_user_timeline .= '</div>';
    488488
    489                     $tweet_user_timeline .= '</li>';
     489                    $tweet_user_timeline .= '</article>';
    490490
    491491                endfor;
    492492
    493                 $tweet_user_timeline .= '</ul>';
     493                $tweet_user_timeline .= '</div>';
    494494
    495495                // Feed Owner Data - $screen_name
Note: See TracChangeset for help on using the changeset viewer.