Version Description
- Addressed a security vulnerability
Download this release
Release Info
Developer | Erikvona |
Plugin | Per page add to head |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- perpagehead.php +1 -1
- readme.txt +5 -3
- settings.php +1 -1
perpagehead.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Per page head
|
4 |
Plugin URI: http://www.evona.nl/plugins/per-page-head
|
5 |
Description: Allows you to add content into the <head> section for a specific page, like custom JS or custom HTML
|
6 |
-
Version: 1.4.
|
7 |
Author: Erik von Asmuth
|
8 |
Author URI: http://evona.nl/over-mij/
|
9 |
License: GPLv2
|
3 |
Plugin Name: Per page head
|
4 |
Plugin URI: http://www.evona.nl/plugins/per-page-head
|
5 |
Description: Allows you to add content into the <head> section for a specific page, like custom JS or custom HTML
|
6 |
+
Version: 1.4.4
|
7 |
Author: Erik von Asmuth
|
8 |
Author URI: http://evona.nl/over-mij/
|
9 |
License: GPLv2
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ Tags: head, css, favicon
|
|
5 |
Author URI: http://evona.nl/over-mij
|
6 |
Author: Erik von Asmuth (Erikvona)
|
7 |
Requires at least: 3.5
|
8 |
-
Tested up to:
|
9 |
-
Stable tag: 1.4.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -15,6 +15,8 @@ This plugin adds content between the head tags for specific WordPress posts, or
|
|
15 |
|
16 |
== Description ==
|
17 |
|
|
|
|
|
18 |
Ever got really annoyed how much effort it took to add style tags for just one page into the head section of a page, using WordPress? Well, I did. So I made this plugin for exactly that purpose. It just adds whatever you give it to the head tag. With a small size and no use of any client side code, efficiency is taken care of. You can also use it to add meta tags, for SEO, auto-refresh, Google Analytics, or anything else you want to put in there.
|
19 |
|
20 |
Of course, you can also use it to add your own stylesheets and JavaScript files. Anything that normally goes in the head section is fine.
|
@@ -35,7 +37,7 @@ Installation is plain and simple
|
|
35 |
1. You can also add head to all posts! Just use settings -> per page add to head
|
36 |
|
37 |
== Changelog ==
|
38 |
-
= 1.4.
|
39 |
- Addressed a security vulnerability
|
40 |
|
41 |
= 1.4.2 =
|
5 |
Author URI: http://evona.nl/over-mij
|
6 |
Author: Erik von Asmuth (Erikvona)
|
7 |
Requires at least: 3.5
|
8 |
+
Tested up to: 5.7.2
|
9 |
+
Stable tag: 1.4.4
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
15 |
|
16 |
== Description ==
|
17 |
|
18 |
+
**Disclaimer: This plugin is not actively being developed, and is closed. Security issues will remain to be addressed when they arise, but this plugin will not receive further updates. Users should use this at their own risk**
|
19 |
+
|
20 |
Ever got really annoyed how much effort it took to add style tags for just one page into the head section of a page, using WordPress? Well, I did. So I made this plugin for exactly that purpose. It just adds whatever you give it to the head tag. With a small size and no use of any client side code, efficiency is taken care of. You can also use it to add meta tags, for SEO, auto-refresh, Google Analytics, or anything else you want to put in there.
|
21 |
|
22 |
Of course, you can also use it to add your own stylesheets and JavaScript files. Anything that normally goes in the head section is fine.
|
37 |
1. You can also add head to all posts! Just use settings -> per page add to head
|
38 |
|
39 |
== Changelog ==
|
40 |
+
= 1.4.4 =
|
41 |
- Addressed a security vulnerability
|
42 |
|
43 |
= 1.4.2 =
|
settings.php
CHANGED
@@ -108,7 +108,7 @@ function perpageath_config(){
|
|
108 |
?><form method="post"><?php
|
109 |
if(current_user_can('add-to-head')|| current_user_can('manage_options')):
|
110 |
if(isset($html)){
|
111 |
-
?><textarea style="white-space:pre; width:80%; min-width:600px; height:300px;" name="html"><?php echo $html; ?></textarea><?php
|
112 |
}
|
113 |
?><br />
|
114 |
<h3><?php _e('Manage which users can access the plugin', 'per-page-ath');?></h3>
|
108 |
?><form method="post"><?php
|
109 |
if(current_user_can('add-to-head')|| current_user_can('manage_options')):
|
110 |
if(isset($html)){
|
111 |
+
?><textarea style="white-space:pre; width:80%; min-width:600px; height:300px;" name="html"><?php echo htmlentities($html); ?></textarea><?php
|
112 |
}
|
113 |
?><br />
|
114 |
<h3><?php _e('Manage which users can access the plugin', 'per-page-ath');?></h3>
|