Pz-LinkCard - Version 2.0.1.1

Version Description

Download this release

Release Info

Developer poporon
Plugin Icon 128x128 Pz-LinkCard
Version 2.0.1.1
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.1.1

Files changed (1) hide show
  1. pz-linkcard.php +9 -2
pz-linkcard.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Pz-LinkCard
4
  Plugin URI: http://poporon.poponet.jp/pz-linkcard
5
  Description: リンクをカード形式で表示します。
6
- Version: 2.0.1
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
@@ -134,7 +134,7 @@ class Pz_LinkCard {
134
  'thumbnail-url' => null,
135
  'plugin-link' => null,
136
  'plugin-name' => 'Pz-LinkCard',
137
- 'plugin-version' => '2.0.1',
138
  'plugin-url' => 'http://poporon.poponet.jp/pz-linkcard',
139
  'pz-hbc-options' => null,
140
  'debug-time' => null
@@ -1106,6 +1106,13 @@ class Pz_LinkCard {
1106
  $excerpt = $str;
1107
  }
1108
 
 
 
 
 
 
 
 
1109
  // データセット
1110
  if ($data['title'] == $title ) {
1111
  $before['mod_title'] = 0;
3
  Plugin Name: Pz-LinkCard
4
  Plugin URI: http://poporon.poponet.jp/pz-linkcard
5
  Description: リンクをカード形式で表示します。
6
+ Version: 2.0.1.1
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
134
  'thumbnail-url' => null,
135
  'plugin-link' => null,
136
  'plugin-name' => 'Pz-LinkCard',
137
+ 'plugin-version' => '2.0.1.1',
138
  'plugin-url' => 'http://poporon.poponet.jp/pz-linkcard',
139
  'pz-hbc-options' => null,
140
  'debug-time' => null
1106
  $excerpt = $str;
1107
  }
1108
 
1109
+ // URLパース(ドメイン名などを抽出)
1110
+ $url_m = parse_url( $url );
1111
+ $scheme = $url_m['scheme']; // スキーム
1112
+ //$domain = $url_m['host']; // ドメイン名
1113
+ //$domain_url = $scheme.'://'.$url_m['host']; // ドメインURL
1114
+ $location = substr($url, mb_strlen($domain_url)); // ドメイン名以降
1115
+
1116
  // データセット
1117
  if ($data['title'] == $title ) {
1118
  $before['mod_title'] = 0;