Version Description
Download this release
Release Info
Developer | catchthemes |
Plugin | Catch IDs |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- catch-ids.php +24 -3
- languages/catch-ids.pot +24 -0
- readme.txt +5 -2
catch-ids.php
CHANGED
@@ -3,11 +3,12 @@
|
|
3 |
Plugin Name: Catch IDs
|
4 |
Plugin URI: http://catchthemes.com/wp-plugins/catch-ids/
|
5 |
Description: Catch IDs is a simple and light weight plugin to show the Post ID, Page ID, Media ID, Links ID, Category ID, Tag ID and User ID in the Admin Section Table. This plugin was initially develop to support our themes features slider. Then we thought that this will be helpful to all the WordPress Admin Users. Just activate and catch IDs in your page, post, category, tag and media pages.
|
6 |
-
Version: 1.2.
|
7 |
License: GNU General Public License, version 3 (GPLv3)
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
9 |
Author: Catch Themes
|
10 |
Author URI: http://catchthemes.com
|
|
|
11 |
Tags: admin, catch-ids, category, ids, links, media, page, post, show, simple, tag, user, wp-admin
|
12 |
*/
|
13 |
|
@@ -28,6 +29,27 @@ You should have received a copy of the GNU General Public License
|
|
28 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
29 |
*/
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
/**
|
33 |
* @package Catch Themes
|
@@ -35,13 +57,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
35 |
* @since Catch IDs 1.0
|
36 |
*/
|
37 |
|
38 |
-
|
39 |
if ( ! function_exists( 'catchids_column' ) ):
|
40 |
/**
|
41 |
* Prepend the new column to the columns array
|
42 |
*/
|
43 |
function catchids_column($cols) {
|
44 |
-
$cols['catchids'] = 'ID';
|
45 |
return $cols;
|
46 |
}
|
47 |
endif; // catchids_column
|
3 |
Plugin Name: Catch IDs
|
4 |
Plugin URI: http://catchthemes.com/wp-plugins/catch-ids/
|
5 |
Description: Catch IDs is a simple and light weight plugin to show the Post ID, Page ID, Media ID, Links ID, Category ID, Tag ID and User ID in the Admin Section Table. This plugin was initially develop to support our themes features slider. Then we thought that this will be helpful to all the WordPress Admin Users. Just activate and catch IDs in your page, post, category, tag and media pages.
|
6 |
+
Version: 1.2.5
|
7 |
License: GNU General Public License, version 3 (GPLv3)
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
9 |
Author: Catch Themes
|
10 |
Author URI: http://catchthemes.com
|
11 |
+
Text Domain: catch-ids
|
12 |
Tags: admin, catch-ids, category, ids, links, media, page, post, show, simple, tag, user, wp-admin
|
13 |
*/
|
14 |
|
29 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
30 |
*/
|
31 |
|
32 |
+
if ( ! defined( 'CATCHIDS_FILE' ) ) {
|
33 |
+
define( 'CATCHIDS_FILE', __FILE__ );
|
34 |
+
}
|
35 |
+
|
36 |
+
if ( ! defined( 'CATCHIDS_PATH' ) ) {
|
37 |
+
define( 'CATCHIDS_PATH', plugin_dir_path( CATCHIDS_FILE ) );
|
38 |
+
}
|
39 |
+
|
40 |
+
if ( ! defined( 'CATCHIDS_BASENAME' ) ) {
|
41 |
+
define( 'CATCHIDS_BASENAME', plugin_basename( CATCHIDS_FILE ) );
|
42 |
+
}
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Make plugin available for translation
|
46 |
+
* Translations can be filed in the /languages/ directory
|
47 |
+
*/
|
48 |
+
function catchids_load_textdomain() {
|
49 |
+
load_plugin_textdomain( 'catch-ids', false, dirname( CATCHIDS_BASENAME ) . '/languages/' );
|
50 |
+
}
|
51 |
+
add_action( 'init', 'catchids_load_textdomain', 1 );
|
52 |
+
|
53 |
|
54 |
/**
|
55 |
* @package Catch Themes
|
57 |
* @since Catch IDs 1.0
|
58 |
*/
|
59 |
|
|
|
60 |
if ( ! function_exists( 'catchids_column' ) ):
|
61 |
/**
|
62 |
* Prepend the new column to the columns array
|
63 |
*/
|
64 |
function catchids_column($cols) {
|
65 |
+
$cols['catchids'] = esc_html__( 'ID', 'catch-ids' );
|
66 |
return $cols;
|
67 |
}
|
68 |
endif; // catchids_column
|
languages/catch-ids.pot
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Catch Themes
|
2 |
+
# This file is distributed under the GNU General Public License v3 or later.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Catch Ids\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tags/catch-ids\n"
|
7 |
+
"POT-Creation-Date: 2015-10-02 00:50+0545\n"
|
8 |
+
"PO-Revision-Date: 2015-10-02 00:50+0545\n"
|
9 |
+
"Last-Translator: Pratik Shrestha <pratik@catchthemes.com>\n"
|
10 |
+
"Language-Team: Catch Themes <info@catchthemes.com>\n"
|
11 |
+
"Language: en_US\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.7.1\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;esc_attr_e;esc_attr__;_nx;"
|
18 |
+
"esc_html__\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-SearchPath-0: ..\n"
|
21 |
+
|
22 |
+
#: ../catch-ids.php:65
|
23 |
+
msgid "ID"
|
24 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: catchthemes, sakinshrestha, pratikshrestha
|
|
4 |
Donate link: http://catchthemes.com/wp-plugins/catch-ids/
|
5 |
Tags: catch-ids, simple, admin, wp-admin, show, ids, post, page, category, media, links, tag, user
|
6 |
Requires at least: 3.5
|
7 |
-
Tested up to: 4.3
|
8 |
-
Stable tag: 1.2.
|
9 |
License: GNU General Public License, version 3 (GPLv3)
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
|
@@ -47,6 +47,9 @@ Manual Installation through FTP access
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.2.4
|
51 |
* Compatibility check up to version 4.3
|
52 |
|
4 |
Donate link: http://catchthemes.com/wp-plugins/catch-ids/
|
5 |
Tags: catch-ids, simple, admin, wp-admin, show, ids, post, page, category, media, links, tag, user
|
6 |
Requires at least: 3.5
|
7 |
+
Tested up to: 4.3.1
|
8 |
+
Stable tag: 1.2.5
|
9 |
License: GNU General Public License, version 3 (GPLv3)
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.2.5
|
51 |
+
* Translation ready update
|
52 |
+
|
53 |
= 1.2.4
|
54 |
* Compatibility check up to version 4.3
|
55 |
|