Changeset 2171776
- Timestamp:
- 10/11/2019 01:17:58 PM (6 years ago)
- Location:
- posts-viewed-recently/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
recent_viewed_posts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
posts-viewed-recently/trunk/readme.txt
r2032952 r2171776 4 4 Tags: recent, recently, last, viewed, visited, post, posts, page, pages, widget, thumbnail, thumbnails, sidebar, plugin, wordpress, custom, taxonomy 5 5 Requires at least: 3.0 6 Tested up to: 5. 0.37 Stable tag: 1.3. 16 Tested up to: 5.2.3 7 Stable tag: 1.3.2 8 8 License: GPLv2 or later 9 9 … … 62 62 == Changelog == 63 63 64 = 1.3.2 = 65 * Bugfix: Missing closing tags when the number of posts viewed was more than the number of posts to show. Issue fixed 66 64 67 = 1.3.1 = 65 68 * Direct file access blocked … … 80 83 81 84 == Upgrade Notice == 85 86 = 1.3.2 = 87 * Bugfix: Broken HTML fixed 82 88 83 89 = 1.3.1 = -
posts-viewed-recently/trunk/recent_viewed_posts.php
r1952772 r2171776 7 7 Plugin URI: https://www.astech.solutions/wordpress-javascript-jquery-plugins/posts-viewed-recently/ 8 8 Description: Posts Viewed Recently plugin shows posts/pages viewed by a visitor as a responsive sidebar widget or in post/page using the shortcode. 9 Version: 1.3. 19 Version: 1.3.2 10 10 Author: AS Tech Solutions 11 11 Author URI: https://www.astech.solutions/ … … 148 148 foreach ( $ft_cookie_posts as $postId ) { 149 149 if ( $count >= $number || absint( $postId ) == 0 ) { 150 return;150 break; 151 151 } 152 152 $ft_post = get_post( absint( $postId ) ); // Get the post
Note: See TracChangeset
for help on using the changeset viewer.