Changeset 1664279
- Timestamp:
- 05/24/2017 09:18:31 PM (9 years ago)
- Location:
- json-feeder/trunk
- Files:
-
- 3 edited
-
json-feeder.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
template/json-feeder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
json-feeder/trunk/json-feeder.php
r1664186 r1664279 5 5 Description: Adds a new type of feed you can subscribe to. http://example.com/feed/json or http://example.com/?feed=json to anywhere you get a JSON form. 6 6 Author: signalfade 7 Version: 1.0. 27 Version: 1.0.3 8 8 9 9 License: -
json-feeder/trunk/readme.txt
r1664186 r1664279 4 4 Requires at least: 4.0 5 5 Tested up to: 4.7.5 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 8 8 Adds a feed based on the jsonfeed.org standard that one can subscribe to or parse. … … 20 20 == Changelog == 21 21 22 **1.0.1 May 24, 2017** 22 **1.0.3 May 24, 2017** 23 24 Fixed item image link. 25 26 **1.0.2 May 24, 2017** 23 27 24 28 Fixed head link, missing href. -
json-feeder/trunk/template/json-feeder.php
r1664116 r1664279 48 48 // thumbnail 49 49 if (function_exists('has_post_thumbnail') && has_post_thumbnail($id)) { 50 $single["image"] = preg_replace("/^.*['\"](https?:\/\/[^'\"]*)['\"].*/i","$1",get_the_post_thumbnail($id));50 $single["image"] = get_the_post_thumbnail_url($id); 51 51 } 52 52
Note: See TracChangeset
for help on using the changeset viewer.