Changeset 1629934
- Timestamp:
- 04/05/2017 09:37:15 AM (9 years ago)
- Location:
- hs-social-media-buttons
- Files:
-
- 17 added
- 5 edited
-
tags/2.0.5 (added)
-
tags/2.0.5/hs-social-buttons.php (added)
-
tags/2.0.5/hssocial-badges.css (added)
-
tags/2.0.5/images (added)
-
tags/2.0.5/images/cmp_logo.png (added)
-
tags/2.0.5/images/social-icons-left.png (added)
-
tags/2.0.5/images/social-icons.png (added)
-
tags/2.0.5/inc (added)
-
tags/2.0.5/inc/css (added)
-
tags/2.0.5/inc/css/general-left.css (added)
-
tags/2.0.5/inc/css/general.css (added)
-
tags/2.0.5/inc/front-end.php (added)
-
tags/2.0.5/inc/js (added)
-
tags/2.0.5/inc/js/hssocial.js (added)
-
tags/2.0.5/inc/options-page-wrapper.php (added)
-
tags/2.0.5/readme.txt (added)
-
tags/2.0.5/uninstall.php (added)
-
trunk/hs-social-buttons.php (modified) (3 diffs)
-
trunk/inc/front-end-head.php (modified) (1 diff)
-
trunk/inc/front-end.php (modified) (1 diff)
-
trunk/inc/options-page-wrapper.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hs-social-media-buttons/trunk/hs-social-buttons.php
r1625821 r1629934 4 4 * Plugin URI: http://heliossolutions.in/ 5 5 * Description: HS Social Media Buttons plugin adds social media buttons to your site. 6 * Version: 2.0. 66 * Version: 2.0.7 7 7 * Author: Helios Solutions 8 8 * Author URI: http://heliossolutions.in/ 9 9 * Text Domain: hs-social 10 10 */ 11 12 if ( ! defined( 'ABSPATH' ) ) { 13 echo "Hi there! Nice try. Come again."; 14 die(); 15 } 16 17 11 18 $options = array(); 12 19 … … 144 151 145 152 /* Load Front End Header */ 146 function front_end_head_load() {153 function hssocial_front_end_head_load() { 147 154 require( 'inc/front-end-head.php' ); 148 155 } 149 add_action('wp_head', ' front_end_head_load');156 add_action('wp_head', 'hssocial_front_end_head_load'); 150 157 151 158 /* Load Front End Footer */ 152 function front_end_load() {159 function hssocial_front_end_load() { 153 160 require( 'inc/front-end.php' ); 154 161 } 155 add_action('wp_footer', ' front_end_load');162 add_action('wp_footer', 'hssocial_front_end_load'); 156 163 157 function my_enqueue($hook) {164 function hssocial_enqueue($hook) { 158 165 if ( 'settings_page_hssocial-badges' != $hook ) { 159 166 return; … … 163 170 wp_enqueue_script( 'hssocialadmin', plugins_url('hs-social-media-buttons/inc/js/hssocial_admin.js'), array('jquery'), '', true ); 164 171 } 165 add_action( 'admin_enqueue_scripts', ' my_enqueue' );172 add_action( 'admin_enqueue_scripts', 'hssocial_enqueue' ); -
hs-social-media-buttons/trunk/inc/front-end-head.php
r1626324 r1629934 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 echo "Hi there! Nice try. Come again."; 4 die(); 5 } 6 2 7 $hide_mobile = $options['mobile']; 3 8 ?> -
hs-social-media-buttons/trunk/inc/front-end.php
r1625821 r1629934 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 echo "Hi there! Nice try. Come again."; 4 die(); 5 } 6 2 7 $options = get_option('hssocial_badges'); 3 8 $hssocial_facebook = $options['hssocial_facebook']; -
hs-social-media-buttons/trunk/inc/options-page-wrapper.php
r1625821 r1629934 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 echo "Hi there! Nice try. Come again."; 4 die(); 5 } 6 ?> 1 7 <div class="wrap"> 2 8 -
hs-social-media-buttons/trunk/readme.txt
r1625821 r1629934 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 8 Tested up to: 4.7.3 9 Stable tag: 2.0. 69 Stable tag: 2.0.7 10 10 11 11 Add Social Media Buttons to your Site … … 66 66 67 67 == Changelog == 68 = 2.0.7 = 69 * Bug fixes 70 68 71 = 2.0.6 = 69 72 * Compatibility with wordpress version 4.7.3 … … 91 94 92 95 == Upgrade Notice == 93 96 = 2.0.7 = 97 * Bug fixes 94 98 = 2.0.6 = 95 99 * Compatibility with wordpress version 4.7.3
Note: See TracChangeset
for help on using the changeset viewer.