Version Description
- Added apsi_icon_style filter for icon style
Download this release
Release Info
Developer | Access Keys |
Plugin | Social Icons WordPress Plugin – AccessPress Social Icons |
Version | 1.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.5.7 to 1.5.8
- accesspress-social-icons.php +2 -2
- inc/frontend/icon-group-list.php +2 -1
- readme.txt +4 -1
accesspress-social-icons.php
CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die("No script kiddies please!");
|
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
-
* Version:1.5.
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
@@ -46,7 +46,7 @@ if (!defined('APS_LANG_DIR')) {
|
|
46 |
}
|
47 |
if(!defined('APS_VERSION'))
|
48 |
{
|
49 |
-
define('APS_VERSION','1.5.
|
50 |
}
|
51 |
/**
|
52 |
* Register of widgets
|
4 |
* Plugin Name:AccessPress Social Icons
|
5 |
* Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
|
6 |
* Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
|
7 |
+
* Version:1.5.8
|
8 |
* Author:AccessPress Themes
|
9 |
* Author URI:http://accesspressthemes.com/
|
10 |
* Text Domain: accesspress-social-icons
|
46 |
}
|
47 |
if(!defined('APS_VERSION'))
|
48 |
{
|
49 |
+
define('APS_VERSION','1.5.8');
|
50 |
}
|
51 |
/**
|
52 |
* Register of widgets
|
inc/frontend/icon-group-list.php
CHANGED
@@ -76,8 +76,9 @@
|
|
76 |
</a>
|
77 |
<span class="aps-icon-tooltip aps-icon-tooltip-<?php echo $icon_extra['tooltip_position']; ?>" style="display: none;"></span>
|
78 |
<?php
|
|
|
79 |
$icon_style .='</style>';
|
80 |
-
echo $icon_style
|
81 |
?>
|
82 |
</div>
|
83 |
<?php if ($group_icon_counter == $icons_per_division) {
|
76 |
</a>
|
77 |
<span class="aps-icon-tooltip aps-icon-tooltip-<?php echo $icon_extra['tooltip_position']; ?>" style="display: none;"></span>
|
78 |
<?php
|
79 |
+
$icon_style = apply_filters('apsi_icon_style',$icon_style);
|
80 |
$icon_style .='</style>';
|
81 |
+
echo $icon_style
|
82 |
?>
|
83 |
</div>
|
84 |
<?php if ($group_icon_counter == $icons_per_division) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: social icon, social icons, social media, social icon widget, social icons
|
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -129,6 +129,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
129 |
4. Backend Lcon Sets Listing
|
130 |
|
131 |
== Changelog ==
|
|
|
|
|
|
|
132 |
= 1.5.7 =
|
133 |
* Added apsi_icon_animation_option hook for animation option
|
134 |
* Changed input type text to number for Margin Between Each Icon Field
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 1.5.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
129 |
4. Backend Lcon Sets Listing
|
130 |
|
131 |
== Changelog ==
|
132 |
+
= 1.5.8 =
|
133 |
+
* Added apsi_icon_style filter for icon style
|
134 |
+
|
135 |
= 1.5.7 =
|
136 |
* Added apsi_icon_animation_option hook for animation option
|
137 |
* Changed input type text to number for Margin Between Each Icon Field
|