Version Description
[ Specification Change ][ body class ] Add post top page to class
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 9.83.0.0 |
Comparing to | |
See all releases |
Code changes from version 9.82.0.0 to 9.83.0.0
- inc/add-body-class.php +1 -1
- inc/sns/sns_admin.php +5 -5
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +6 -6
- vkExUnit.php +1 -1
inc/add-body-class.php
CHANGED
@@ -8,7 +8,7 @@ function veu_add_body_class( $class ) {
|
|
8 |
}
|
9 |
}
|
10 |
|
11 |
-
if ( is_archive() || is_singular() ) {
|
12 |
if ( function_exists( 'vk_get_post_type' ) ) {
|
13 |
$post_type_info = vk_get_post_type();
|
14 |
if ( ! empty( $post_type_info['slug'] ) ) {
|
8 |
}
|
9 |
}
|
10 |
|
11 |
+
if ( is_archive() || is_singular() || ( is_home() && ! is_front_page() ) ) {
|
12 |
if ( function_exists( 'vk_get_post_type' ) ) {
|
13 |
$post_type_info = vk_get_post_type();
|
14 |
if ( ! empty( $post_type_info['slug'] ) ) {
|
inc/sns/sns_admin.php
CHANGED
@@ -195,13 +195,13 @@ if ( ! empty( $options['snsBtn_position']['after'] ) ) {
|
|
195 |
</tr>
|
196 |
|
197 |
<tr>
|
198 |
-
<th><label ><?php _e( 'Output action hook (optional)', '
|
199 |
<td>
|
200 |
<p>
|
201 |
-
<?php _e( 'By default, it is output at the bottom of the content.', '
|
202 |
-
<?php _e( 'If you want to change the location of share buttons, please enter the action hook name.', '
|
203 |
-
<?php _e( 'If you want to multiple display that, input action hook name separated by line breaks.', '
|
204 |
-
<?php _e( 'Ex) lightning_comment_before', '
|
205 |
</p>
|
206 |
<textarea name="vkExUnit_sns_options[hook_point]" id="hook_point" style="width:100%;" rows="2"><?php echo esc_html( $options['hook_point'] ); ?></textarea>
|
207 |
</td>
|
195 |
</tr>
|
196 |
|
197 |
<tr>
|
198 |
+
<th><label ><?php _e( 'Output action hook (optional)', 'vk-all-in-one-expansion-unit' ); ?></label></th>
|
199 |
<td>
|
200 |
<p>
|
201 |
+
<?php _e( 'By default, it is output at the bottom of the content.', 'vk-all-in-one-expansion-unit' ); ?><br>
|
202 |
+
<?php _e( 'If you want to change the location of share buttons, please enter the action hook name.', 'vk-all-in-one-expansion-unit' ); ?><br>
|
203 |
+
<?php _e( 'If you want to multiple display that, input action hook name separated by line breaks.', 'vk-all-in-one-expansion-unit' ); ?><br>
|
204 |
+
<?php _e( 'Ex) lightning_comment_before', 'vk-all-in-one-expansion-unit' ); ?>
|
205 |
</p>
|
206 |
<textarea name="vkExUnit_sns_options[hook_point]" id="hook_point" style="width:100%;" rows="2"><?php echo esc_html( $options['hook_point'] ); ?></textarea>
|
207 |
</td>
|
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.2
|
7 |
Requires PHP: 7.2
|
8 |
-
Stable tag: 9.
|
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.82.0.0 =
|
85 |
[ Add Function ][ Google Analytics ] Be able to set Both UA and GA4 tag.
|
86 |
|
5 |
Requires at least: 5.3.0
|
6 |
Tested up to: 6.0.2
|
7 |
Requires PHP: 7.2
|
8 |
+
Stable tag: 9.83.0.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.83.0.0 =
|
85 |
+
[ Specification Change ][ body class ] Add post top page to class
|
86 |
+
|
87 |
= 9.82.0.0 =
|
88 |
[ Add Function ][ Google Analytics ] Be able to set Both UA and GA4 tag.
|
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
|
9 |
|
10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
11 |
|
12 |
+
return ComposerAutoloaderInit96c6675ea3f2c12af02e92557f7875e4::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -24,12 +24,12 @@ class ComposerAutoloaderInit223b7d1bba5d93766979fcde9dec9280
|
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
-
spl_autoload_register(array('
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
29 |
-
spl_autoload_unregister(array('
|
30 |
|
31 |
require __DIR__ . '/autoload_static.php';
|
32 |
-
call_user_func(\Composer\Autoload\
|
33 |
|
34 |
$loader->register(true);
|
35 |
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit96c6675ea3f2c12af02e92557f7875e4
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInit96c6675ea3f2c12af02e92557f7875e4', 'loadClassLoader'), true, true);
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit96c6675ea3f2c12af02e92557f7875e4', 'loadClassLoader'));
|
30 |
|
31 |
require __DIR__ . '/autoload_static.php';
|
32 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit96c6675ea3f2c12af02e92557f7875e4::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
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'V' =>
|
@@ -46,9 +46,9 @@ class ComposerStaticInit223b7d1bba5d93766979fcde9dec9280
|
|
46 |
public static function getInitializer(ClassLoader $loader)
|
47 |
{
|
48 |
return \Closure::bind(function () use ($loader) {
|
49 |
-
$loader->prefixLengthsPsr4 =
|
50 |
-
$loader->prefixDirsPsr4 =
|
51 |
-
$loader->classMap =
|
52 |
|
53 |
}, null, ClassLoader::class);
|
54 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit96c6675ea3f2c12af02e92557f7875e4
|
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 = ComposerStaticInit96c6675ea3f2c12af02e92557f7875e4::$prefixLengthsPsr4;
|
50 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit96c6675ea3f2c12af02e92557f7875e4::$prefixDirsPsr4;
|
51 |
+
$loader->classMap = ComposerStaticInit96c6675ea3f2c12af02e92557f7875e4::$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.
|
5 |
-
'version' => '9.
|
6 |
-
'reference' => '
|
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.
|
24 |
-
'version' => '9.
|
25 |
-
'reference' => '
|
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.83.0.0',
|
5 |
+
'version' => '9.83.0.0',
|
6 |
+
'reference' => 'd9f8ef1a0a9ff56b1d879f5299e5f2bea1354605',
|
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.83.0.0',
|
24 |
+
'version' => '9.83.0.0',
|
25 |
+
'reference' => 'd9f8ef1a0a9ff56b1d879f5299e5f2bea1354605',
|
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.
|
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.83.0.0
|
7 |
* Requires PHP: 7.2
|
8 |
* Author: Vektor,Inc.
|
9 |
* Text Domain: vk-all-in-one-expansion-unit
|