Head & Footer Code - Version 1.0.2

Version Description

  • Change: Replace PayPal donation links to prevent account limitations if plugin is used on website that violates PayPal's Acceptable Use Policy
Download this release

Release Info

Developer urkekg
Plugin Icon Head & Footer Code
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

Files changed (3) hide show
  1. head-footer-code.php +2 -2
  2. inc/settings.php +1 -1
  3. readme.txt +6 -3
head-footer-code.php CHANGED
@@ -7,8 +7,8 @@
7
  * @wordpress-plugin
8
  * Plugin Name: Head & Footer Code
9
  * Plugin URI: http://urosevic.net/wordpress/plugins/head-footer-code/
10
- * Description: Easy add site-wide and/or article specific custom code to head and/or footer sections (before the &lt;/body&gt;) by hooking to <code>wp_head</code> and <code>wp_footer</code>.
11
- * Version: 1.0.1
12
  * Author: Aleksandar Urosevic
13
  * Author URI: http://urosevic.net
14
  * License: GPL-2.0+
7
  * @wordpress-plugin
8
  * Plugin Name: Head & Footer Code
9
  * Plugin URI: http://urosevic.net/wordpress/plugins/head-footer-code/
10
+ * Description: Easy add site-wide and/or article specific custom code to head and/or footer sections (before the &lt;/head&gt; or &lt;/body&gt;) by hooking to <code>wp_head</code> and <code>wp_footer</code>.
11
+ * Version: 1.0.2
12
  * Author: Aleksandar Urosevic
13
  * Author URI: http://urosevic.net
14
  * License: GPL-2.0+
inc/settings.php CHANGED
@@ -280,7 +280,7 @@ function auhfc_add_plugin_meta_links( $links, $file ) {
280
  __( 'Support' )
281
  ),
282
  sprintf(
283
- '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Q6Q762MQ97XJ6" target="_blank">%s</a>',
284
  __( 'Donate' )
285
  ),
286
  )
280
  __( 'Support' )
281
  ),
282
  sprintf(
283
+ '<a href="http://urosevic.net/wordpress/donate/?donate_for=head-footer-code" target="_blank">%s</a>',
284
  __( 'Donate' )
285
  ),
286
  )
readme.txt CHANGED
@@ -1,14 +1,14 @@
1
  === Head & Footer Code ===
2
  Contributors: urkekg
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8RDRQXPV6YB98
4
  Tags: wp_head, wp_footer, head footer code, custom head script, custom footer script, google analytics, pixel tracking, tracking code, javascript, scripts, site verification, css
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
- Stable tag: 1.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Easy add site-wide and/or article specific custom code to head and/or footer section (before the &lt;/body&gt;) by hooking to wp_head and wp_footer.
12
 
13
  == Description ==
14
 
@@ -81,6 +81,9 @@ Initial release of new plugin developed by Aleksandar Urosevic.
81
 
82
  == Changelog ==
83
 
 
 
 
84
  = 1.0.1 =
85
  * Fix: PHP Notice Trying to get property of non-object
86
  * Optimize: Remove `attachment` post type from available to select as no reason to have custom head/footer code on attachments
1
  === Head & Footer Code ===
2
  Contributors: urkekg
3
+ Donate link: http://urosevic.net/wordpress/donate/?donate_for=head-footer-code
4
  Tags: wp_head, wp_footer, head footer code, custom head script, custom footer script, google analytics, pixel tracking, tracking code, javascript, scripts, site verification, css
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
+ Stable tag: 1.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Easy add site-wide and/or article specific custom code before the &lt;/head&gt; or &lt;/body&gt; by hooking to wp_head and wp_footer.
12
 
13
  == Description ==
14
 
81
 
82
  == Changelog ==
83
 
84
+ = 1.0.2 =
85
+ * Change: Replace PayPal donation links to prevent account limitations if plugin is used on website that violates PayPal's Acceptable Use Policy
86
+
87
  = 1.0.1 =
88
  * Fix: PHP Notice Trying to get property of non-object
89
  * Optimize: Remove `attachment` post type from available to select as no reason to have custom head/footer code on attachments