Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.6.0

Version Description

  • Added More WordPress Resources Link
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Icons WordPress Plugin – AccessPress Social Icons
Version 1.6.0
Comparing to
See all releases

Code changes from version 1.5.9 to 1.6.0

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.9
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.9');
50
  }
51
  /**
52
  * Register of widgets
@@ -96,6 +96,7 @@ if (!class_exists('APS_Class')) {
96
  add_submenu_page('aps-social', __('Add New Set','accesspress-social-icons'), __('Add New Set','accesspress-social-icons'), 'manage_options', 'aps-social-add', array($this, 'add_new_set'));
97
  add_submenu_page('aps-social', __('How to use','accesspress-social-icons'), __('How to use','accesspress-social-icons'), 'manage_options', 'aps-social-how-to-use', array($this, 'how_to_use'));
98
  add_submenu_page('aps-social', __('About','accesspress-social-icons'), __('About','accesspress-social-icons'), 'manage_options', 'aps-about', array($this, 'about'));
 
99
  }
100
 
101
  //plugin's main page
@@ -107,11 +108,15 @@ if (!class_exists('APS_Class')) {
107
  function add_new_set() {
108
  include_once('inc/backend/add-new-set.php');
109
  }
 
 
 
 
110
 
111
  //registers all the js and css in wp-admin
112
  function register_admin_assets() {
113
  //including the scripts in the plugins pages only
114
- if (isset($_GET['page']) && ($_GET['page'] == 'aps-social' || $_GET['page'] == 'aps-social-add' || $_GET['page'] == 'aps-about'|| $_GET['page'] == 'aps-social-how-to-use')) {
115
  $aps_script_variable = array('icon_preview' => __('Icon Preview', 'accesspress-social-icons'),
116
  'icon_link' => __('Icon Link', 'accesspress-social-icons'),
117
  'icon_link_target' => __('Icon Link Target','accesspress-social-icons'),
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.6.0
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.6.0');
50
  }
51
  /**
52
  * Register of widgets
96
  add_submenu_page('aps-social', __('Add New Set','accesspress-social-icons'), __('Add New Set','accesspress-social-icons'), 'manage_options', 'aps-social-add', array($this, 'add_new_set'));
97
  add_submenu_page('aps-social', __('How to use','accesspress-social-icons'), __('How to use','accesspress-social-icons'), 'manage_options', 'aps-social-how-to-use', array($this, 'how_to_use'));
98
  add_submenu_page('aps-social', __('About','accesspress-social-icons'), __('About','accesspress-social-icons'), 'manage_options', 'aps-about', array($this, 'about'));
99
+ add_submenu_page('aps-social', __('More WordPress Resources','accesspress-social-icons'), __('More WordPress Resources','accesspress-social-icons'), 'manage_options', 'aps-more-wp-resources', array($this, 'wp_resources'));
100
  }
101
 
102
  //plugin's main page
108
  function add_new_set() {
109
  include_once('inc/backend/add-new-set.php');
110
  }
111
+
112
+ function wp_resources(){
113
+ include_once('inc/backend/wp-resources.php');
114
+ }
115
 
116
  //registers all the js and css in wp-admin
117
  function register_admin_assets() {
118
  //including the scripts in the plugins pages only
119
+ if (isset($_GET['page']) && ($_GET['page'] == 'aps-social' || $_GET['page'] == 'aps-social-add' || $_GET['page'] == 'aps-about'|| $_GET['page'] == 'aps-social-how-to-use' || $_GET['page'] == 'aps-more-wp-resources')) {
120
  $aps_script_variable = array('icon_preview' => __('Icon Preview', 'accesspress-social-icons'),
121
  'icon_link' => __('Icon Link', 'accesspress-social-icons'),
122
  'icon_link_target' => __('Icon Link Target','accesspress-social-icons'),
inc/backend/wp-resources.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wrap aps-clear">
2
+ <div class="aps-add-set-wrapper">
3
+ <div class="aps-panel">
4
+ <?php include( 'panel-head.php'); ?>
5
+ <div class="aps-panel-body">
6
+ <div class="aps-row">
7
+ <div class="aps-col-three-third">
8
+ <h2><?php _e('WP All Club', 'accesspress-social-icons'); ?></h2>
9
+ <div class="ap-tab-wrapper">
10
+ <h2><span style="text-decoration: underline;">What is WPAll?</span></h2>
11
+ <p>WPAll is an ultimate <strong>WP Club</strong> for <strong>online WordPress Resources</strong>.</p>
12
+ <p>It is a go-to <strong>WordPress resource club</strong> where you can get only hand-picked, tested, genuine and carefully written useful information about various aspects of WordPress. Such information will help you<strong> learn WordPress</strong>,<strong> work efficiently with WordPress, keep up to date with WordPress</strong> and most of all <strong>shares authentic and genuine knowledge / information about WordPress</strong> around the globe.</p>
13
+ <p>Besides information, we feature the best of the<strong> free and premium WordPress themes</strong>, <strong>templates, plugins, add-ons</strong>, <strong>deals etc.</strong> From the themes, plugins to WordPress development companies, theme/ plugin authors, stores, marketplaces, WP customization and support companies, WP coupons and deals etc. are put together for users' convenience.</p>
14
+ <p>Similarly, WPAll is a collection of the insightful and resourceful WordPress articles, tips and tricks, blogs, WP news and updates etc. Comprehensive WordPress tutorials and guides for the beginners as well as full-fledged technical WP articles and blogs can be found on the site.</p>
15
+ <p>If you are one of the WordPress contributors i.e. engineer, theme/ plugin developer, designer, blogger, support provider or anyone, let us know. We can help you spread your words.</p>
16
+
17
+ <p><a href="http://wpall.club" class="button-primary">Check more WP Resources</a></p>
18
+ </div>
19
+ </div>
20
+
21
+ </div>
22
+ </div>
23
+ </div>
24
+ </div>
25
+ <?php include_once('promobar.php'); ?>
26
+ </div>
readme.txt CHANGED
@@ -4,13 +4,15 @@ Tags: social icon, social icons, social media, social icon widget, social icons
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
- Stable tag: 1.5.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Add social media icons on your site | select from pre-designed sets or upload your own | create multiple icon sets | Use it anywhere using shortcode.
12
 
13
  == Description ==
 
 
14
  ### Link-up your social profiles right from your website, in an easy and fun way! ###
15
 
16
  <strong>AccessPress Social Icons</strong> - allows you to create various social icons and link your social profiles from your website. Its fun because - you can create, customize and build the beautiful icons for your social media profiles on your own.
@@ -105,6 +107,8 @@ For complete information and documentation regarding plugin,please visit below l
105
 
106
  [Docs](https://accesspressthemes.com/documentation/documentationplugin-instruction-accesspress-social-icons/ )
107
 
 
 
108
  == Installation ==
109
  1. Unzip accesspress-social-icons.zip
110
  1. Upload all the files to the /wp-content/plugins/accesspress-social-icons
@@ -129,6 +133,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.9 =
133
  Added apsi_icon_class filter for icon class
134
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 4.0
6
  Tested up to: 4.6
7
+ Stable tag: 1.6.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Add social media icons on your site | select from pre-designed sets or upload your own | create multiple icon sets | Use it anywhere using shortcode.
12
 
13
  == Description ==
14
+ [Homepage](https://accesspressthemes.com) | [Demo](http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons/) | [Documentation](https://accesspressthemes.com/documentation/documentationplugin-instruction-accesspress-social-icons/) | [Suppport](https://accesspressthemes.com/support) | [Premium Version](http://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/)
15
+
16
  ### Link-up your social profiles right from your website, in an easy and fun way! ###
17
 
18
  <strong>AccessPress Social Icons</strong> - allows you to create various social icons and link your social profiles from your website. Its fun because - you can create, customize and build the beautiful icons for your social media profiles on your own.
107
 
108
  [Docs](https://accesspressthemes.com/documentation/documentationplugin-instruction-accesspress-social-icons/ )
109
 
110
+ [Browse More WordPress Plugin Resources](http://wpall.club)
111
+
112
  == Installation ==
113
  1. Unzip accesspress-social-icons.zip
114
  1. Upload all the files to the /wp-content/plugins/accesspress-social-icons
133
  4. Backend Lcon Sets Listing
134
 
135
  == Changelog ==
136
+ = 1.6.0 =
137
+ * Added More WordPress Resources Link
138
+
139
  = 1.5.9 =
140
  Added apsi_icon_class filter for icon class
141