Version Description
Download this release
Release Info
Developer | tiguan |
Plugin | Simple Author Box |
Version | 1.6 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.6
- readme.txt +1 -1
- simple-author-box.php +4 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
simple-author-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Simple Author Box
|
4 |
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
-
* Version: 1.
|
7 |
* Author: Tiguan
|
8 |
* Author URI: http://tiguandesign.com
|
9 |
* License: GPLv2
|
@@ -158,12 +158,12 @@ if( !class_exists( 'Simple_Author_Box' ) ) {
|
|
158 |
|
159 |
$sab_protocol = is_ssl() ? 'https' : 'http';
|
160 |
|
161 |
-
if ( get_option( 'sab_box_subset' ) != '
|
162 |
$sab_box_subset = get_option( 'sab_box_subset' );
|
163 |
-
$sab_subset = '
|
164 |
|
165 |
} else {
|
166 |
-
$sab_subset = '';
|
167 |
}
|
168 |
|
169 |
$sab_author_font = get_option( 'sab_box_name_font' );
|
3 |
* Plugin Name: Simple Author Box
|
4 |
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
+
* Version: 1.6
|
7 |
* Author: Tiguan
|
8 |
* Author URI: http://tiguandesign.com
|
9 |
* License: GPLv2
|
158 |
|
159 |
$sab_protocol = is_ssl() ? 'https' : 'http';
|
160 |
|
161 |
+
if ( get_option( 'sab_box_subset' ) != 'none' ) {
|
162 |
$sab_box_subset = get_option( 'sab_box_subset' );
|
163 |
+
$sab_subset = 'subset='.$sab_box_subset;
|
164 |
|
165 |
} else {
|
166 |
+
$sab_subset = 'subset=latin';
|
167 |
}
|
168 |
|
169 |
$sab_author_font = get_option( 'sab_box_name_font' );
|