VK All in One Expansion Unit - Version 9.76.3.0

Version Description

  • [ Bug Fix ][ HTML Site Map ] Delete wp_reset_postdata();
Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.76.3.0
Comparing to
See all releases

Code changes from version 9.76.2.0 to 9.76.3.0

inc/sitemap-page/sitemap-page.php CHANGED
@@ -76,7 +76,11 @@ function veu_show_sitemap( $content ) {
76
  if ( is_404() ) {
77
  return $content; }
78
 
79
- wp_reset_postdata(); // need under other section / ex:child page index
 
 
 
 
80
  global $post;
81
  if ( $post ) {
82
  $enable = get_post_meta( $post->ID, 'vkExUnit_sitemap', true );
76
  if ( is_404() ) {
77
  return $content; }
78
 
79
+ // のコメントを見る限り child page index などで必要らしいが、見た限りなくても困らないように見える。
80
+ // wp_reset_postdata(); // need under other section / ex:child page index
81
+
82
+ // wp_reset_postdata(); があると、VK 投稿リストブロックで get_the_excerpt() でこの関数が走ってしまい、抜粋の次の author 情報がリセットされて、以降の表示要素の $post が狂ってしまうので一旦コメントアウト
83
+ // もし wp_reset_postdata(); がない事により不具合が発生するようなら再検討
84
  global $post;
85
  if ( $post ) {
86
  $enable = get_post_meta( $post->ID, 'vkExUnit_sitemap', true );
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Fa
5
  Requires at least: 5.3.0
6
  Tested up to: 6.0.0
7
  Requires PHP: 7.2
8
- Stable tag: 9.76.2.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -81,6 +81,9 @@ e.g.
81
 
82
  == Changelog ==
83
 
 
 
 
84
  = 9.76.2.0 =
85
  * [ Design Bug Fix ][ Child Page List ] Fixed an issue button positions distorted depending on the theme
86
 
5
  Requires at least: 5.3.0
6
  Tested up to: 6.0.0
7
  Requires PHP: 7.2
8
+ Stable tag: 9.76.3.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
81
 
82
  == Changelog ==
83
 
84
+ = 9.76.3.0 =
85
+ * [ Bug Fix ][ HTML Site Map ] Delete wp_reset_postdata();
86
+
87
  = 9.76.2.0 =
88
  * [ Design Bug Fix ][ Child Page List ] Fixed an issue button positions distorted depending on the theme
89
 
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInit61054598bfe556314c8f63e86cef4201::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInit6c35ace2cce8f5f38cb08d8459fe3a85::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit61054598bfe556314c8f63e86cef4201
6
  {
7
  private static $loader;
8
 
@@ -24,12 +24,12 @@ class ComposerAutoloaderInit61054598bfe556314c8f63e86cef4201
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInit61054598bfe556314c8f63e86cef4201', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInit61054598bfe556314c8f63e86cef4201', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInit61054598bfe556314c8f63e86cef4201::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit6c35ace2cce8f5f38cb08d8459fe3a85
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInit6c35ace2cce8f5f38cb08d8459fe3a85', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit6c35ace2cce8f5f38cb08d8459fe3a85', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInit6c35ace2cce8f5f38cb08d8459fe3a85::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit61054598bfe556314c8f63e86cef4201
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'V' =>
@@ -46,9 +46,9 @@ class ComposerStaticInit61054598bfe556314c8f63e86cef4201
46
  public static function getInitializer(ClassLoader $loader)
47
  {
48
  return \Closure::bind(function () use ($loader) {
49
- $loader->prefixLengthsPsr4 = ComposerStaticInit61054598bfe556314c8f63e86cef4201::$prefixLengthsPsr4;
50
- $loader->prefixDirsPsr4 = ComposerStaticInit61054598bfe556314c8f63e86cef4201::$prefixDirsPsr4;
51
- $loader->classMap = ComposerStaticInit61054598bfe556314c8f63e86cef4201::$classMap;
52
 
53
  }, null, ClassLoader::class);
54
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit6c35ace2cce8f5f38cb08d8459fe3a85
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'V' =>
46
  public static function getInitializer(ClassLoader $loader)
47
  {
48
  return \Closure::bind(function () use ($loader) {
49
+ $loader->prefixLengthsPsr4 = ComposerStaticInit6c35ace2cce8f5f38cb08d8459fe3a85::$prefixLengthsPsr4;
50
+ $loader->prefixDirsPsr4 = ComposerStaticInit6c35ace2cce8f5f38cb08d8459fe3a85::$prefixDirsPsr4;
51
+ $loader->classMap = ComposerStaticInit6c35ace2cce8f5f38cb08d8459fe3a85::$classMap;
52
 
53
  }, null, ClassLoader::class);
54
  }
vendor/composer/installed.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
4
- 'pretty_version' => '9.76.2.0',
5
- 'version' => '9.76.2.0',
6
- 'reference' => '27abb54ba7cd431c6d000b0043730bd49eeeba27',
7
  'type' => 'project',
8
  'install_path' => __DIR__ . '/../../',
9
  'aliases' => array(),
@@ -20,9 +20,9 @@
20
  'dev_requirement' => false,
21
  ),
22
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
23
- 'pretty_version' => '9.76.2.0',
24
- 'version' => '9.76.2.0',
25
- 'reference' => '27abb54ba7cd431c6d000b0043730bd49eeeba27',
26
  'type' => 'project',
27
  'install_path' => __DIR__ . '/../../',
28
  'aliases' => array(),
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
4
+ 'pretty_version' => '9.76.3.0',
5
+ 'version' => '9.76.3.0',
6
+ 'reference' => '009ee28bc61691faa7ff286bdac8e62181ca059a',
7
  'type' => 'project',
8
  'install_path' => __DIR__ . '/../../',
9
  'aliases' => array(),
20
  'dev_requirement' => false,
21
  ),
22
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
23
+ 'pretty_version' => '9.76.3.0',
24
+ 'version' => '9.76.3.0',
25
+ 'reference' => '009ee28bc61691faa7ff286bdac8e62181ca059a',
26
  'type' => 'project',
27
  'install_path' => __DIR__ . '/../../',
28
  'aliases' => array(),
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
- * Version: 9.76.2.0
7
  * Requires PHP: 7.2
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
+ * Version: 9.76.3.0
7
  * Requires PHP: 7.2
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit