Changeset 1920728
- Timestamp:
- 08/07/2018 03:26:35 AM (8 years ago)
- Location:
- gallery-from-regex-matches/trunk
- Files:
-
- 2 edited
-
gallery-from-regex-matches.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gallery-from-regex-matches/trunk/gallery-from-regex-matches.php
r1920720 r1920728 2 2 Plugin Name: Gallery From Regex Matches 3 3 Plugin URI: https://wordpress.org/plugins/gallery-from-regex-matches/ 4 Version: 0.6. 14 Version: 0.6.2 5 5 License: GPL2 6 6 Description: Maintain a gallery by including all published images in your library which match a regex (in name, title or description). … … 108 108 ORDER BY c.post_date DESC 109 109 LIMIT %d 110 ", array($regex, $exclude_regex, $exclude_regex , $limit));110 ", array($regex, $exclude_regex, $exclude_regex == '' ? 'x' : $exclude_regex, $limit)); 111 111 112 112 $ids = $wpdb->get_results( $query , ARRAY_N ); -
gallery-from-regex-matches/trunk/readme.txt
r1920723 r1920728 5 5 Requires PHP: 7.0 6 6 Tested up to: 4.9.8 7 Stable tag: 0.6. 17 Stable tag: 0.6.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 66 67 = 0.6.2 = 68 * Fix bug with mysql query and empty regexp 69 66 70 = 0.6.1 = 67 71 * Added `exclude_regex` shortcode parameter.
Note: See TracChangeset
for help on using the changeset viewer.