Version Description
- Showing ID columns for plugins that register non-public post types and taxonomies
Download this release
Release Info
Developer | Alphawolf |
Plugin | Reveal IDs |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
- readme.txt +3 -0
- reveal-ids-for-wp-admin-25.php +5 -5
readme.txt
CHANGED
@@ -54,6 +54,9 @@ None.
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
57 |
= 1.5.2 =
|
58 |
* Workaround for third-party plugin incompatibilities
|
59 |
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.5.3 =
|
58 |
+
* Showing ID columns for plugins that register non-public post types and taxonomies
|
59 |
+
|
60 |
= 1.5.2 =
|
61 |
* Workaround for third-party plugin incompatibilities
|
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
|
@@ -139,7 +139,7 @@ class RevealIDsForWPAdmin {
|
|
139 |
add_action('manage_edit-link-categories_columns', array(&$this, 'column_add'));
|
140 |
add_filter('manage_link_categories_custom_column', array(&$this, 'column_return_value'), 100, 3);
|
141 |
|
142 |
-
foreach( get_taxonomies(
|
143 |
if( isset($taxonomy) ) {
|
144 |
add_action("manage_edit-${taxonomy}_columns", array(&$this, 'column_add'));
|
145 |
add_filter("manage_${taxonomy}_custom_column", array(&$this, 'column_return_value'), 100, 3);
|
@@ -148,7 +148,7 @@ class RevealIDsForWPAdmin {
|
|
148 |
}
|
149 |
}
|
150 |
|
151 |
-
foreach( get_post_types(
|
152 |
if( isset($ptype) ) {
|
153 |
add_action("manage_edit-${ptype}_columns", array(&$this, 'column_add'));
|
154 |
add_filter("manage_${ptype}_posts_custom_column", array(&$this, 'column_value'), 100, 3);
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Reveal IDs
|
4 |
+
Version: 1.5.3
|
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-2018 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.3");
|
41 |
|
42 |
/**
|
43 |
* Define the plugin path slug
|
139 |
add_action('manage_edit-link-categories_columns', array(&$this, 'column_add'));
|
140 |
add_filter('manage_link_categories_custom_column', array(&$this, 'column_return_value'), 100, 3);
|
141 |
|
142 |
+
foreach( get_taxonomies() as $taxonomy ) {
|
143 |
if( isset($taxonomy) ) {
|
144 |
add_action("manage_edit-${taxonomy}_columns", array(&$this, 'column_add'));
|
145 |
add_filter("manage_${taxonomy}_custom_column", array(&$this, 'column_return_value'), 100, 3);
|
148 |
}
|
149 |
}
|
150 |
|
151 |
+
foreach( get_post_types() as $ptype ) {
|
152 |
if( isset($ptype) ) {
|
153 |
add_action("manage_edit-${ptype}_columns", array(&$this, 'column_add'));
|
154 |
add_filter("manage_${ptype}_posts_custom_column", array(&$this, 'column_value'), 100, 3);
|