Version Description
- Bug: Fixed some missing output on the settings screen. Oopsie
Download this release
Release Info
Developer | dartiss |
Plugin | No Self Pings |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- no-self-pings.php +4 -4
- readme.txt +9 -4
no-self-pings.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
Plugin Name: No Self Pings
|
4 |
-
Plugin URI: https://
|
5 |
Description: 🏓 Keeps WordPress from sending pings to your own site.
|
6 |
-
Version: 1.1.
|
7 |
Author: David Artiss
|
8 |
Author URI: https://artiss.blog
|
9 |
Text Domain: no-self-ping
|
@@ -131,7 +131,7 @@ add_action( 'admin_init', 'no_self_pings_settings_init' );
|
|
131 |
function no_self_pings_section_callback() {
|
132 |
|
133 |
/* translators: %s: URL of website */
|
134 |
-
|
135 |
|
136 |
}
|
137 |
|
@@ -144,6 +144,6 @@ function no_self_pings_setting_callback() {
|
|
144 |
|
145 |
$urls = sanitize_option( 'ping_sites', get_option( 'no_self_pings_option', '' ) );
|
146 |
|
147 |
-
echo '<
|
148 |
|
149 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
Plugin Name: No Self Pings
|
4 |
+
Plugin URI: https://wordpress.org/plugins/no-self-ping/
|
5 |
Description: 🏓 Keeps WordPress from sending pings to your own site.
|
6 |
+
Version: 1.1.4
|
7 |
Author: David Artiss
|
8 |
Author URI: https://artiss.blog
|
9 |
Text Domain: no-self-ping
|
131 |
function no_self_pings_section_callback() {
|
132 |
|
133 |
/* translators: %s: URL of website */
|
134 |
+
echo sprintf( esc_attr_e( 'By default, No Self Pings will exclude pings for this site (%s) but you can supply additional URLs below. Separate multiple URLs with line breaks.', 'no-self-ping' ), esc_url( home_url() ) );
|
135 |
|
136 |
}
|
137 |
|
144 |
|
145 |
$urls = sanitize_option( 'ping_sites', get_option( 'no_self_pings_option', '' ) );
|
146 |
|
147 |
+
echo '<textarea name="no_self_pings_option" rows="3" class="large-text code">' . esc_attr( $urls ) . '</textarea>';
|
148 |
|
149 |
}
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: mdawaffe, dartiss
|
|
3 |
Donate link: https://artiss.blog/donate
|
4 |
Tags: pingback, ping, trackback
|
5 |
Requires at least: 4.6
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 1.1.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -21,6 +21,8 @@ This plugin disables intra-blog pinging.
|
|
21 |
|
22 |
Once activated, there's nothing for you to do. However, head to Settings -> Discussion and you'll find a field in which you can, if you wish, specify more domains that won't be pinged. Why? Well, maybe you often refer to other sites that you maintain or, particularly, you run a multi-site and don't want each blog pinging the other - specify a list here and you're sorted.
|
23 |
|
|
|
|
|
24 |
Please visit the [Github page](https://github.com/dartiss/no-self-ping "Github") for the latest code development, planned enhancements and known issues.
|
25 |
|
26 |
This plugin was original developed by the awesome [Michael D. Adams](https://profiles.wordpress.org/mdawaffe/).
|
@@ -42,6 +44,9 @@ It's now ready to go.
|
|
42 |
|
43 |
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
|
44 |
|
|
|
|
|
|
|
45 |
= 1.1.3 =
|
46 |
* Enhancement: Improved plugin meta
|
47 |
* Maintenance: Beefed up code quality even more
|
@@ -69,5 +74,5 @@ It's now ready to go.
|
|
69 |
|
70 |
== Upgrade Notice ==
|
71 |
|
72 |
-
= 1.1.
|
73 |
-
*
|
3 |
Donate link: https://artiss.blog/donate
|
4 |
Tags: pingback, ping, trackback
|
5 |
Requires at least: 4.6
|
6 |
+
Tested up to: 5.5
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 1.1.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
21 |
|
22 |
Once activated, there's nothing for you to do. However, head to Settings -> Discussion and you'll find a field in which you can, if you wish, specify more domains that won't be pinged. Why? Well, maybe you often refer to other sites that you maintain or, particularly, you run a multi-site and don't want each blog pinging the other - specify a list here and you're sorted.
|
23 |
|
24 |
+
Iconography is courtesy of the very talented [Janki Rathod](https://www.linkedin.com/in/jankirathore/).
|
25 |
+
|
26 |
Please visit the [Github page](https://github.com/dartiss/no-self-ping "Github") for the latest code development, planned enhancements and known issues.
|
27 |
|
28 |
This plugin was original developed by the awesome [Michael D. Adams](https://profiles.wordpress.org/mdawaffe/).
|
44 |
|
45 |
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
|
46 |
|
47 |
+
= 1.1.4 =
|
48 |
+
* Bug: Fixed some missing output on the settings screen. Oopsie
|
49 |
+
|
50 |
= 1.1.3 =
|
51 |
* Enhancement: Improved plugin meta
|
52 |
* Maintenance: Beefed up code quality even more
|
74 |
|
75 |
== Upgrade Notice ==
|
76 |
|
77 |
+
= 1.1.4 =
|
78 |
+
* Fixed an issue with the settings output
|