Changeset 3493656
- Timestamp:
- 03/29/2026 03:56:48 AM (6 days ago)
- Location:
- hotelipp/trunk
- Files:
-
- 3 edited
-
class/Setting.php (modified) (1 diff)
-
hotelipp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hotelipp/trunk/class/Setting.php
r3492663 r3493656 112 112 // ── 一休.com ───────────────────────────────────────── 113 113 case 'ikyu': 114 // VCリンクのvc_urlはトップページのみ有効(検索URLはリンク切れになる) 115 $base = 'https://www.ikyu.com/'; 114 // 一休はVC経由でもクエリパラメータ付き検索URLが有効なため、検索ページを使用 115 $kw = trim( (string) ( $hotel_data['hotel_name'] ?? '' ) ); 116 $base = $kw 117 ? 'https://www.ikyu.com/ap/srch/UspW11103.aspx?kwd=' . rawurlencode( $kw ) 118 : 'https://www.ikyu.com/'; 116 119 if ( ! empty( $s['valuecommerce_sid'] ) && ! empty( $s['valuecommerce_pid_ikyu'] ) ) { 117 120 return self::wrap_vc( $base, $s['valuecommerce_sid'], $s['valuecommerce_pid_ikyu'] ); -
hotelipp/trunk/hotelipp.php
r3492663 r3493656 5 5 * Description: 楽天トラベル・じゃらん・Yahoo!トラベル・Agodaなど複数の予約サイトに対応したアフィリエイトリンク付きのホテルカードを作成・管理できるプラグインです。Gutenbergブロックおよびショートコードに対応しています。 6 6 * Author: wpmiyake 7 * Version: 0.0. 17 * Version: 0.0.2 8 8 * Author URI: https://dormykatsu.com/ 9 9 * Text Domain: hotelipp … … 22 22 define( 'HOTELIPP_PATH', plugin_dir_path( __FILE__ ) ); 23 23 define( 'HOTELIPP_BASENAME', plugin_basename( __FILE__ ) ); 24 define( 'HOTELIPP_VERSION', '0.0. 0' );24 define( 'HOTELIPP_VERSION', '0.0.2' ); 25 25 26 26 /** -
hotelipp/trunk/readme.txt
r3492663 r3493656 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 0.0. 16 Stable tag: 0.0.2 7 7 Requires PHP: 7.4 8 8 License: GPLv3 or later … … 117 117 == Changelog == 118 118 119 = 0.0.2 = 120 * Improved affiliate link structure for Ikyu.com 121 119 122 = 0.0.1 = 120 123 * Fixed affiliate link structure for Rurubu Travel, Ikyu.com, and KNT
Note: See TracChangeset
for help on using the changeset viewer.