Changeset 2639859
- Timestamp:
- 12/06/2021 08:55:41 AM (4 years ago)
- Location:
- branded-social-images/trunk
- Files:
-
- 4 edited
-
info.json (modified) (1 diff)
-
lib/class.og-image-plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branded-social-images/trunk/info.json
r2636240 r2639859 5 5 "Author": "Internetbureau Clearsite", 6 6 "Author URI": "https://www.clearsite.nl/", 7 "Version": "1.0. 19",7 "Version": "1.0.20", 8 8 "License": "GPL2" 9 9 } -
branded-social-images/trunk/lib/class.og-image-plugin.php
r2636230 r2639859 1242 1242 $base_url = parse_url($base_url, PHP_URL_SCHEME) . '://' . parse_url($base_url, PHP_URL_HOST); // no trailing slash 1243 1243 1244 return trailingslashit($base_url . remove_query_arg(array_keys(!empty($_GET) ? $_GET : ['asd' => 1]))) . self::output_filename() . '/'; // yes, slash, WP will add it with a redirect anyway 1244 $og_url = trailingslashit($base_url . remove_query_arg(array_keys(!empty($_GET) ? $_GET : ['asd' => 1]))) . self::output_filename() . '/'; // yes, slash, WP will add it with a redirect anyway 1245 1246 /** 1247 * @since 1.0.20 allows for final filtering of the output OG:Image url. 1248 */ 1249 return apply_filters('bsi_image_url', $og_url); 1245 1250 } 1246 1251 -
branded-social-images/trunk/readme.txt
r2636240 r2639859 4 4 Requires at least: 4.7 5 5 Tested up to: 5.8.1 6 Stable tag: 1.0. 196 Stable tag: 1.0.20 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later … … 133 133 134 134 == Changelog == 135 136 = 1.0.20 = 137 * added: filter `bsi_image_url` added to allow filtering of the final output OG:Image url. 135 138 136 139 = 1.0.19 = -
branded-social-images/trunk/wp-plugin.php
r2636240 r2639859 6 6 * Author: Internetbureau Clearsite 7 7 * Author URI: https://clearsite.nl/branded-social-images 8 * Version: 1.0. 198 * Version: 1.0.20 9 9 * License: GPL2 10 10 */
Note: See TracChangeset
for help on using the changeset viewer.