VK All in One Expansion Unit - Version 3.4.0

Version Description

  • [ Add function ] Add feedly button to Follow me section.
Download this release

Release Info

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

Code changes from version 3.3.0 to 3.4.0

packages.php CHANGED
@@ -78,7 +78,7 @@ $required_packages[] = array(
78
  );
79
 
80
  /*-------------------------------------------*/
81
- /* icon
82
  /*-------------------------------------------*/
83
  $required_packages[] = array(
84
  'name' => 'icon',
@@ -88,7 +88,7 @@ $required_packages[] = array(
88
  );
89
 
90
  /*-------------------------------------------*/
91
- /* wpTitle
92
  /*-------------------------------------------*/
93
  $required_packages[] = array(
94
  'name' => 'wpTitle',
@@ -98,7 +98,7 @@ $required_packages[] = array(
98
  );
99
 
100
  /*-------------------------------------------*/
101
- /* metaKeyword
102
  /*-------------------------------------------*/
103
  $required_packages[] = array(
104
  'name' => 'metaKeyword',
@@ -114,7 +114,7 @@ $required_packages[] = array(
114
  'default' => true
115
  );
116
  /*-------------------------------------------*/
117
- /* metaDescription
118
  /*-------------------------------------------*/
119
  $required_packages[] = array(
120
  'name' => 'metaDescription',
78
  );
79
 
80
  /*-------------------------------------------*/
81
+ /* icon
82
  /*-------------------------------------------*/
83
  $required_packages[] = array(
84
  'name' => 'icon',
88
  );
89
 
90
  /*-------------------------------------------*/
91
+ /* wpTitle
92
  /*-------------------------------------------*/
93
  $required_packages[] = array(
94
  'name' => 'wpTitle',
98
  );
99
 
100
  /*-------------------------------------------*/
101
+ /* metaKeyword
102
  /*-------------------------------------------*/
103
  $required_packages[] = array(
104
  'name' => 'metaKeyword',
114
  'default' => true
115
  );
116
  /*-------------------------------------------*/
117
+ /* metaDescription
118
  /*-------------------------------------------*/
119
  $required_packages[] = array(
120
  'name' => 'metaDescription',
plugins/related_posts/related_posts.php CHANGED
@@ -7,7 +7,7 @@ function vkExUnit_add_relatedPosts( $content ){
7
  /*-------------------------------------------*/
8
 
9
  $max_show_posts = 10;
10
- $border_of_and_to_in = 2;
11
 
12
  $args_base = array(
13
  'posts_per_page' => $max_show_posts,
7
  /*-------------------------------------------*/
8
 
9
  $max_show_posts = 10;
10
+ $border_of_and_to_in = 10;
11
 
12
  $args_base = array(
13
  'posts_per_page' => $max_show_posts,
plugins/sns/function_follow.php CHANGED
@@ -22,10 +22,8 @@ function vkExUnit_add_follow($content){
22
  $fbPageUrl = (isset($options['fbPageUrl'])) ? $options['fbPageUrl'] : '';
23
  $twitterId = (isset($options['twitterId'])) ? $options['twitterId'] : '';
24
 
25
- if ( $fbPageUrl || $twitterId ) {
26
- $follow_html .= '<div class="veu_followSet veu_contentAddSection">'."\n";
27
- $follow_html .= '<h3 class="followSet_title">'.$title.'</h3>';
28
- }
29
 
30
  if ( $fbPageUrl ) {
31
  $follow_html .= '<div class="follow_btn fb-like" data-href="'.esc_url( $options['fbPageUrl'] ).'" data-layout="button" data-action="like" data-show-faces="false" data-share="true"></div>'."\n";
@@ -35,9 +33,9 @@ function vkExUnit_add_follow($content){
35
  $follow_html .= '<div class="follow_btn follow_twitter"><a href="https://twitter.com/'.esc_html( $options['twitterId'] ).'" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">@'.esc_html( $options['twitterId'] ).'</a></div>'."\n";
36
  }
37
 
38
- if ( $fbPageUrl || $twitterId ) {
39
- $follow_html .= '</div><!-- [ /.followSet ] -->'."\n";
40
- }
41
 
42
  $content .= $follow_html;
43
 
22
  $fbPageUrl = (isset($options['fbPageUrl'])) ? $options['fbPageUrl'] : '';
23
  $twitterId = (isset($options['twitterId'])) ? $options['twitterId'] : '';
24
 
25
+ $follow_html .= '<div class="veu_followSet veu_contentAddSection">'."\n";
26
+ $follow_html .= '<h3 class="followSet_title">'.$title.'</h3>';
 
 
27
 
28
  if ( $fbPageUrl ) {
29
  $follow_html .= '<div class="follow_btn fb-like" data-href="'.esc_url( $options['fbPageUrl'] ).'" data-layout="button" data-action="like" data-show-faces="false" data-share="true"></div>'."\n";
33
  $follow_html .= '<div class="follow_btn follow_twitter"><a href="https://twitter.com/'.esc_html( $options['twitterId'] ).'" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">@'.esc_html( $options['twitterId'] ).'</a></div>'."\n";
34
  }
35
 
36
+ $follow_html .= '<div class="follow_btn follow_feedly"><a href="http://cloud.feedly.com/#subscription/feed/'.home_url().'/feed/" target="blank"><img id="feedlyFollow" src="http://s3.feedly.com/img/follows/feedly-follow-rectangle-volume-small_2x.png" alt="follow us in feedly" width="66" height="20"></a></div>'."\n";
37
+
38
+ $follow_html .= '</div><!-- [ /.followSet ] -->'."\n";
39
 
40
  $content .= $follow_html;
41
 
plugins_admin/admin_bar.php CHANGED
@@ -53,7 +53,7 @@ function vkExUnit_adminbar_link( $wp_admin_bar ){
53
  'meta' => array()
54
  );
55
  $wp_admin_bar->add_node( $args );
56
- $wp_admin_bar->add_node(
57
  array(
58
  'parent' => 'veu_adminlink',
59
  'id' => 'veu_adminlink_active',
53
  'meta' => array()
54
  );
55
  $wp_admin_bar->add_node( $args );
56
+ $wp_admin_bar->add_node(
57
  array(
58
  'parent' => 'veu_adminlink',
59
  'id' => 'veu_adminlink_active',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 4.2
6
  Tested up to: 4.3
7
- Stable tag: 3.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -70,6 +70,9 @@ e.g.
70
 
71
  == Changelog ==
72
 
 
 
 
73
  = 3.3.0 =
74
  * [ Specification change ] Add classname "veu_" at Plugin output html.
75
 
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 4.2
6
  Tested up to: 4.3
7
+ Stable tag: 3.4.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
70
 
71
  == Changelog ==
72
 
73
+ = 3.4.0 =
74
+ * [ Add function ] Add feedly button to Follow me section.
75
+
76
  = 3.3.0 =
77
  * [ Specification change ] Add classname "veu_" at Plugin output html.
78
 
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: http://ex-unit.vektor-inc.co.jp
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: 3.3.0
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: http://ex-unit.vektor-inc.co.jp
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: 3.4.0
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2