Version Description
- WordPress 5.3 compatibility
Download this release
Release Info
Developer | Alphawolf |
Plugin | Reveal IDs |
Version | 1.5.4 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 1.5.4
- readme.txt +5 -2
- reveal-ids-for-wp-admin-25.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Alphawolf
|
|
3 |
Donate link: https://www.schloebe.de/donate/
|
4 |
Tags: reveal, id, wp-admin, hidden, category, post, page, media, links, capability, user, restore, comments, taxonomy, custom posts, post type, multisite, ms
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to:
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -20,7 +20,7 @@ What this plugin does is to reveal most removed entry IDs on admin pages, showin
|
|
20 |
|
21 |
* Sortable columns for WP 3.1 or higher
|
22 |
|
23 |
-
[Developer on
|
24 |
|
25 |
**Included languages:**
|
26 |
|
@@ -54,6 +54,9 @@ None.
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
57 |
= 1.5.3 =
|
58 |
* Showing ID columns for plugins that register non-public post types and taxonomies
|
59 |
|
3 |
Donate link: https://www.schloebe.de/donate/
|
4 |
Tags: reveal, id, wp-admin, hidden, category, post, page, media, links, capability, user, restore, comments, taxonomy, custom posts, post type, multisite, ms
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 5.3.9999
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
20 |
|
21 |
* Sortable columns for WP 3.1 or higher
|
22 |
|
23 |
+
[Developer on Twitter](https://twitter.com/wpseek "Developer on Twitter")
|
24 |
|
25 |
**Included languages:**
|
26 |
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.5.4 =
|
58 |
+
* WordPress 5.3 compatibility
|
59 |
+
|
60 |
= 1.5.3 =
|
61 |
* Showing ID columns for plugins that register non-public post types and taxonomies
|
62 |
|
reveal-ids-for-wp-admin-25.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Reveal IDs
|
4 |
-
Version: 1.5.
|
5 |
Plugin URI: https://www.schloebe.de/wordpress/reveal-ids-for-wp-admin-25-plugin/
|
6 |
Description: Reveals hidden IDs in Admin interface that have been removed with WordPress 2.5 (formerly known as Entry IDs in Manage Posts/Pages View for WP 2.5). See <a href="options-general.php?page=reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php">options page</a> for information.
|
7 |
Author: Oliver Schlöbe
|
@@ -9,7 +9,7 @@ Author URI: https://www.schloebe.de/
|
|
9 |
Text Domain: reveal-ids-for-wp-admin-25
|
10 |
Domain Path: /languages
|
11 |
|
12 |
-
Copyright 2008-
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
@@ -37,7 +37,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
37 |
/**
|
38 |
* Define the plugin version
|
39 |
*/
|
40 |
-
define("RIDWPA_VERSION", "1.5.
|
41 |
|
42 |
/**
|
43 |
* Define the plugin path slug
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Reveal IDs
|
4 |
+
Version: 1.5.4
|
5 |
Plugin URI: https://www.schloebe.de/wordpress/reveal-ids-for-wp-admin-25-plugin/
|
6 |
Description: Reveals hidden IDs in Admin interface that have been removed with WordPress 2.5 (formerly known as Entry IDs in Manage Posts/Pages View for WP 2.5). See <a href="options-general.php?page=reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php">options page</a> for information.
|
7 |
Author: Oliver Schlöbe
|
9 |
Text Domain: reveal-ids-for-wp-admin-25
|
10 |
Domain Path: /languages
|
11 |
|
12 |
+
Copyright 2008-2019 Oliver Schlöbe (email : scripts@schloebe.de)
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License as published by
|
37 |
/**
|
38 |
* Define the plugin version
|
39 |
*/
|
40 |
+
define("RIDWPA_VERSION", "1.5.4");
|
41 |
|
42 |
/**
|
43 |
* Define the plugin path slug
|