Catch IDs - Version 2.1

Version Description

(Released: Aug 19, 2020) = * Bug Fixed: Issue in add new theme page

Download this release

Release Info

Developer catchthemes
Plugin Icon 128x128 Catch IDs
Version 2.1
Comparing to
See all releases

Code changes from version 2.0 to 2.1

catch-ids.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Catch IDs
16
  * Plugin URI: https://catchplugins.com/plugins/catch-ids/
17
  * 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.
18
- * Version: 2.0
19
  * Author: Catch Plugins
20
  * Author URI: catchplugins.com
21
  * License: GPL-3.0+
@@ -53,7 +53,7 @@ if ( ! defined( 'ABSPATH' ) ) {
53
 
54
 
55
  // Define Version
56
- define( 'CATCH_IDS_VERSION', '2.0' );
57
 
58
  // The URL of the directory that contains the plugin
59
  if ( ! defined( 'CATCH_IDS_URL' ) ) {
15
  * Plugin Name: Catch IDs
16
  * Plugin URI: https://catchplugins.com/plugins/catch-ids/
17
  * 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.
18
+ * Version: 2.1
19
  * Author: Catch Plugins
20
  * Author URI: catchplugins.com
21
  * License: GPL-3.0+
53
 
54
 
55
  // Define Version
56
+ define( 'CATCH_IDS_VERSION', '2.1' );
57
 
58
  // The URL of the directory that contains the plugin
59
  if ( ! defined( 'CATCH_IDS_URL' ) ) {
includes/CatchThemesThemePlugin.php CHANGED
@@ -1,448 +1,484 @@
1
- <?php
2
-
3
- Class CatchThemesThemePlugin {
4
- public function __construct(){
5
- remove_action( 'wp_ajax_query-themes', array( $this, 'wp_ajax_query_themes' ), 1 );
6
- add_action( 'wp_ajax_query-themes', array( $this, 'wp_ajax_custom_query_themes' ), 1 );
7
-
8
- add_action( 'admin_enqueue_scripts', array( $this, 'our_themes_script' ) );
9
-
10
- if ( ! is_multisite() ) {
11
- add_action( 'customize_register', array( $this, 'customize_register' ) );
12
- }
13
-
14
- global $wp_customize;
15
- remove_action( 'wp_ajax_customize_load_themes', array( $wp_customize, 'handle_load_themes_request' ) );
16
- add_action( 'wp_ajax_customize_load_themes', array( $this, 'handle_load_themes_request' ) );
17
-
18
- add_filter( 'install_plugins_tabs', array( $this, 'add_our_plugins_tab' ), 1 );
19
- add_filter( "install_plugins_table_api_args_catchplugins", array( $this, 'catchplugins' ), 1 );
20
- add_action( 'install_plugins_catchplugins', array( $this, 'plugins_table' ) );
21
- }
22
-
23
- /* Adds Catch Themes tab in Add Theme page to show all themes by Catch Themes in wordpress.org */
24
- public function wp_ajax_custom_query_themes() {
25
- global $themes_allowedtags, $theme_field_defaults;
26
-
27
- if ( ! current_user_can( 'install_themes' ) ) {
28
- wp_send_json_error();
29
- }
30
-
31
- $args = wp_parse_args( wp_unslash( $_REQUEST['request'] ), array(
32
- 'per_page' => 20,
33
- 'fields' => $theme_field_defaults
34
- ) );
35
-
36
- if ( isset( $args['browse'] ) && 'catchthemes' === $args['browse'] && ! isset( $args['user'] ) ) {
37
- $args['author'] = 'catchthemes';
38
- }
39
-
40
- if ( isset( $args['browse'] ) && 'favorites' === $args['browse'] && ! isset( $args['user'] ) ) {
41
- $user = get_user_option( 'wporg_favorites' );
42
- if ( $user ) {
43
- $args['user'] = $user;
44
- }
45
- }
46
-
47
- $old_filter = isset( $args['browse'] ) ? $args['browse'] : 'search';
48
-
49
- /** This filter is documented in wp-admin/includes/class-wp-theme-install-list-table.php */
50
- $args = apply_filters( 'install_themes_table_api_args_' . $old_filter, $args );
51
-
52
- $api = themes_api( 'query_themes', $args );
53
-
54
- if ( is_wp_error( $api ) ) {
55
- wp_send_json_error();
56
- }
57
-
58
- $update_php = network_admin_url( 'update.php?action=install-theme' );
59
- foreach ( $api->themes as &$theme ) {
60
- $theme->install_url = add_query_arg( array(
61
- 'theme' => $theme->slug,
62
- '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug )
63
- ), $update_php );
64
-
65
- if ( current_user_can( 'switch_themes' ) ) {
66
- if ( is_multisite() ) {
67
- $theme->activate_url = add_query_arg( array(
68
- 'action' => 'enable',
69
- '_wpnonce' => wp_create_nonce( 'enable-theme_' . $theme->slug ),
70
- 'theme' => $theme->slug,
71
- ), network_admin_url( 'themes.php' ) );
72
- } else {
73
- $theme->activate_url = add_query_arg( array(
74
- 'action' => 'activate',
75
- '_wpnonce' => wp_create_nonce( 'switch-theme_' . $theme->slug ),
76
- 'stylesheet' => $theme->slug,
77
- ), admin_url( 'themes.php' ) );
78
- }
79
- }
80
-
81
- if ( ! is_multisite() && current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {
82
- $theme->customize_url = add_query_arg( array(
83
- 'return' => urlencode( network_admin_url( 'theme-install.php', 'relative' ) ),
84
- ), wp_customize_url( $theme->slug ) );
85
- }
86
-
87
- $theme->name = wp_kses( $theme->name, $themes_allowedtags );
88
- $theme->author = wp_kses( $theme->author, $themes_allowedtags );
89
- $theme->version = wp_kses( $theme->version, $themes_allowedtags );
90
- $theme->description = wp_kses( $theme->description, $themes_allowedtags );
91
- $theme->stars = wp_star_rating( array( 'rating' => $theme->rating, 'type' => 'percent', 'number' => $theme->num_ratings, 'echo' => false ) );
92
- $theme->num_ratings = number_format_i18n( $theme->num_ratings );
93
- $theme->preview_url = set_url_scheme( $theme->preview_url );
94
- }
95
-
96
- wp_send_json_success( $api );
97
- }
98
-
99
- public function our_themes_script( $hook_suffix ) {
100
-
101
- if( 'theme-install.php' == $hook_suffix ) {
102
- wp_enqueue_script( 'our-themes-script', plugin_dir_url( __FILE__ ) . '../js/our-themes.js', array( 'jquery' ), '2018-05-16' );
103
- }
104
- }
105
-
106
- /* Add Catch Themes Section in Theme in Customizer */
107
- public function customize_register($wp_customize) {
108
- $wp_customize->add_section( new WP_Customize_Themes_Section( $wp_customize, 'catchthemes', array(
109
- 'title' => __( 'Themes by CatchThemes', 'catch-themes-demo-import' ),
110
- 'action' => 'catchthemes',
111
- 'capability' => 'install_themes',
112
- 'panel' => 'themes',
113
- 'priority' => 6,
114
- ) ) );
115
- }
116
-
117
-
118
-
119
-
120
- /**
121
- * Load themes into the theme browsing/installation UI.
122
- * taken from wp-includes/cllass-wp-customize-manager.php
123
- * @since 4.9.0
124
- */
125
- public function handle_load_themes_request() {
126
- check_ajax_referer( 'switch_themes', 'nonce' );
127
- if ( ! current_user_can( 'switch_themes' ) ) {
128
- wp_die( -1 );
129
- }
130
-
131
- if ( empty( $_POST['theme_action'] ) ) {
132
- wp_send_json_error( 'missing_theme_action' );
133
- }
134
- $theme_action = sanitize_key( $_POST['theme_action'] );
135
- $themes = array();
136
- $args = array();
137
-
138
- // Define query filters based on user input.
139
- if ( ! array_key_exists( 'search', $_POST ) ) {
140
- $args['search'] = '';
141
- } else {
142
- $args['search'] = sanitize_text_field( wp_unslash( $_POST['search'] ) );
143
- }
144
-
145
- if ( ! array_key_exists( 'tags', $_POST ) ) {
146
- $args['tag'] = '';
147
- } else {
148
- $args['tag'] = array_map( 'sanitize_text_field', wp_unslash( (array) $_POST['tags'] ) );
149
- }
150
-
151
- if ( ! array_key_exists( 'page', $_POST ) ) {
152
- $args['page'] = 1;
153
- } else {
154
- $args['page'] = absint( $_POST['page'] );
155
- }
156
-
157
- require_once ABSPATH . 'wp-admin/includes/theme.php';
158
-
159
- if ( 'installed' === $theme_action ) {
160
-
161
- // Load all installed themes from wp_prepare_themes_for_js().
162
- $themes = array( 'themes' => wp_prepare_themes_for_js() );
163
- foreach ( $themes['themes'] as &$theme ) {
164
- $theme['type'] = 'installed';
165
- $theme['active'] = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme['id'] );
166
- }
167
-
168
- } elseif ( 'catchthemes' === $theme_action ) {
169
-
170
- // Load WordPress.org themes from the .org API and normalize data to match installed theme objects.
171
- if ( ! current_user_can( 'install_themes' ) ) {
172
- wp_die( -1 );
173
- }
174
-
175
- // Arguments for all queries.
176
- $wporg_args = array(
177
- 'per_page' => -1,
178
- 'fields' => array(
179
- 'screenshot_url' => true,
180
- 'description' => true,
181
- 'rating' => true,
182
- 'downloaded' => true,
183
- 'downloadlink' => true,
184
- 'last_updated' => true,
185
- 'homepage' => true,
186
- 'num_ratings' => true,
187
- 'tags' => true,
188
- 'parent' => true,
189
- // 'extended_author' => true, @todo: WordPress.org throws a 500 server error when this is here.
190
- ),
191
- );
192
-
193
- $args = array_merge( $wporg_args, $args );
194
-
195
- if ( '' === $args['search'] && '' === $args['tag'] ) {
196
- $args['browse'] = 'new'; // Sort by latest themes by default.
197
- }
198
-
199
- $args['author'] = 'catchthemes';
200
-
201
- // Load themes from the .org API.
202
- $themes = themes_api( 'query_themes', $args );
203
- if ( is_wp_error( $themes ) ) {
204
- wp_send_json_error();
205
- }
206
-
207
- // This list matches the allowed tags in wp-admin/includes/theme-install.php.
208
- $themes_allowedtags = array_fill_keys(
209
- array( 'a', 'abbr', 'acronym', 'code', 'pre', 'em', 'strong', 'div', 'p', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' ),
210
- array()
211
- );
212
- $themes_allowedtags['a'] = array_fill_keys( array( 'href', 'title', 'target' ), true );
213
- $themes_allowedtags['acronym']['title'] = true;
214
- $themes_allowedtags['abbr']['title'] = true;
215
- $themes_allowedtags['img'] = array_fill_keys( array( 'src', 'class', 'alt' ), true );
216
-
217
- // Prepare a list of installed themes to check against before the loop.
218
- $installed_themes = array();
219
- $wp_themes = wp_get_themes();
220
- foreach ( $wp_themes as $theme ) {
221
- $installed_themes[] = $theme->get_stylesheet();
222
- }
223
- $update_php = network_admin_url( 'update.php?action=install-theme' );
224
-
225
- // Set up properties for themes available on WordPress.org.
226
- foreach ( $themes->themes as &$theme ) {
227
- $theme->install_url = add_query_arg( array(
228
- 'theme' => $theme->slug,
229
- '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ),
230
- ), $update_php );
231
-
232
- $theme->name = wp_kses( $theme->name, $themes_allowedtags );
233
- $theme->author = wp_kses( $theme->author, $themes_allowedtags );
234
- $theme->version = wp_kses( $theme->version, $themes_allowedtags );
235
- $theme->description = wp_kses( $theme->description, $themes_allowedtags );
236
- $theme->tags = implode( ', ', $theme->tags );
237
- $theme->stars = wp_star_rating( array(
238
- 'rating' => $theme->rating,
239
- 'type' => 'percent',
240
- 'number' => $theme->num_ratings,
241
- 'echo' => false,
242
- ) );
243
- $theme->num_ratings = number_format_i18n( $theme->num_ratings );
244
- $theme->preview_url = set_url_scheme( $theme->preview_url );
245
-
246
- // Handle themes that are already installed as installed themes.
247
- if ( in_array( $theme->slug, $installed_themes, true ) ) {
248
- $theme->type = 'installed';
249
- } else {
250
- $theme->type = $theme_action;
251
- }
252
-
253
- // Set active based on customized theme.
254
- $theme->active = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme->slug );
255
-
256
- // Map available theme properties to installed theme properties.
257
- $theme->id = $theme->slug;
258
- $theme->screenshot = array( $theme->screenshot_url );
259
- $theme->authorAndUri = $theme->author;
260
- // The .org API can return the full parent theme details if passed the 'parent' arg, or if passed the 'template' option it'll return that in the event it's a child theme.
261
- if ( isset( $theme->parent ) ) {
262
- $theme->parent = $theme->parent['slug'];
263
- } else {
264
- $theme->parent = false;
265
- }
266
- unset( $theme->slug );
267
- unset( $theme->screenshot_url );
268
- unset( $theme->author );
269
- } // End foreach().
270
- } elseif ( 'wporg' === $theme_action ) {
271
-
272
- // Load WordPress.org themes from the .org API and normalize data to match installed theme objects.
273
- if ( ! current_user_can( 'install_themes' ) ) {
274
- wp_die( -1 );
275
- }
276
-
277
- // Arguments for all queries.
278
- $wporg_args = array(
279
- 'per_page' => 100,
280
- 'fields' => array(
281
- 'screenshot_url' => true,
282
- 'description' => true,
283
- 'rating' => true,
284
- 'downloaded' => true,
285
- 'downloadlink' => true,
286
- 'last_updated' => true,
287
- 'homepage' => true,
288
- 'num_ratings' => true,
289
- 'tags' => true,
290
- 'parent' => true,
291
- // 'extended_author' => true, @todo: WordPress.org throws a 500 server error when this is here.
292
- ),
293
- );
294
-
295
- $args = array_merge( $wporg_args, $args );
296
-
297
- if ( '' === $args['search'] && '' === $args['tag'] ) {
298
- $args['browse'] = 'new'; // Sort by latest themes by default.
299
- }
300
-
301
- // Load themes from the .org API.
302
- $themes = themes_api( 'query_themes', $args );
303
- if ( is_wp_error( $themes ) ) {
304
- wp_send_json_error();
305
- }
306
-
307
- // This list matches the allowed tags in wp-admin/includes/theme-install.php.
308
- $themes_allowedtags = array_fill_keys(
309
- array( 'a', 'abbr', 'acronym', 'code', 'pre', 'em', 'strong', 'div', 'p', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' ),
310
- array()
311
- );
312
- $themes_allowedtags['a'] = array_fill_keys( array( 'href', 'title', 'target' ), true );
313
- $themes_allowedtags['acronym']['title'] = true;
314
- $themes_allowedtags['abbr']['title'] = true;
315
- $themes_allowedtags['img'] = array_fill_keys( array( 'src', 'class', 'alt' ), true );
316
-
317
- // Prepare a list of installed themes to check against before the loop.
318
- $installed_themes = array();
319
- $wp_themes = wp_get_themes();
320
- foreach ( $wp_themes as $theme ) {
321
- $installed_themes[] = $theme->get_stylesheet();
322
- }
323
- $update_php = network_admin_url( 'update.php?action=install-theme' );
324
-
325
- // Set up properties for themes available on WordPress.org.
326
- foreach ( $themes->themes as &$theme ) {
327
- $theme->install_url = add_query_arg( array(
328
- 'theme' => $theme->slug,
329
- '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ),
330
- ), $update_php );
331
-
332
- $theme->name = wp_kses( $theme->name, $themes_allowedtags );
333
- $theme->author = wp_kses( $theme->author, $themes_allowedtags );
334
- $theme->version = wp_kses( $theme->version, $themes_allowedtags );
335
- $theme->description = wp_kses( $theme->description, $themes_allowedtags );
336
- $theme->tags = implode( ', ', $theme->tags );
337
- $theme->stars = wp_star_rating( array(
338
- 'rating' => $theme->rating,
339
- 'type' => 'percent',
340
- 'number' => $theme->num_ratings,
341
- 'echo' => false,
342
- ) );
343
- $theme->num_ratings = number_format_i18n( $theme->num_ratings );
344
- $theme->preview_url = set_url_scheme( $theme->preview_url );
345
-
346
- // Handle themes that are already installed as installed themes.
347
- if ( in_array( $theme->slug, $installed_themes, true ) ) {
348
- $theme->type = 'installed';
349
- } else {
350
- $theme->type = $theme_action;
351
- }
352
-
353
- // Set active based on customized theme.
354
- $theme->active = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme->slug );
355
-
356
- // Map available theme properties to installed theme properties.
357
- $theme->id = $theme->slug;
358
- $theme->screenshot = array( $theme->screenshot_url );
359
- $theme->authorAndUri = $theme->author;
360
- // The .org API can return the full parent theme details if passed the 'parent' arg, or if passed the 'template' option it'll return that in the event it's a child theme.
361
- if ( isset( $theme->parent ) ) {
362
- $theme->parent = $theme->parent['slug'];
363
- } else {
364
- $theme->parent = false;
365
- }
366
- unset( $theme->slug );
367
- unset( $theme->screenshot_url );
368
- unset( $theme->author );
369
- } // End foreach().
370
- } // End if().
371
-
372
- /**
373
- * Filters the theme data loaded in the customizer.
374
- *
375
- * This allows theme data to be loading from an external source,
376
- * or modification of data loaded from `wp_prepare_themes_for_js()`
377
- * or WordPress.org via `themes_api()`.
378
- *
379
- * @since 4.9.0
380
- *
381
- * @see wp_prepare_themes_for_js()
382
- * @see themes_api()
383
- * @see WP_Customize_Manager::__construct()
384
- *
385
- * @param array $themes Nested array of theme data.
386
- * @param array $args List of arguments, such as page, search term, and tags to query for.
387
- * @param WP_Customize_Manager $manager Instance of Customize manager.
388
- */
389
- $themes = apply_filters( 'customize_load_themes', $themes, $args, $wp_customize );
390
-
391
- wp_send_json_success( $themes );
392
- }
393
-
394
- /* Plugins */
395
- /* Adds Catch Plugins tab in Add Plugin page to show all plugins by Catch Plugins in wordpress.org */
396
- public function add_our_plugins_tab($tabs) {
397
- // Add our filter here
398
- $tabs['catchplugins'] = _x( 'Catch Plugins', 'Plugin Installer' );
399
-
400
- return $tabs;
401
- }
402
-
403
- public function catchplugins() {
404
- /* From CORE Start */
405
- global $paged, $tab;
406
- wp_reset_vars( array( 'tab' ) );
407
-
408
- $defined_class = new WP_Plugin_Install_List_Table();
409
- $paged = $defined_class->get_pagenum();
410
-
411
- $per_page = 30;
412
- //$installed_plugins = catch_get_installed_plugins();
413
-
414
- $args = array(
415
- 'page' => $paged,
416
- 'per_page' => $per_page,
417
- 'fields' => array(
418
- 'last_updated' => true,
419
- 'icons' => true,
420
- 'active_installs' => true
421
- ),
422
- // Send the locale and installed plugin slugs to the API so it can provide context-sensitive results.
423
- 'locale' => get_user_locale(),
424
- //'installed_plugins' => array_keys( $installed_plugins ),
425
- );
426
- /* From CORE End */
427
-
428
- // Add author filter for our plugins
429
- $args['author'] = 'catchplugins';
430
-
431
- return $args;
432
- }
433
-
434
- public function plugins_table() {
435
- global $wp_list_table;
436
- printf(
437
- '<p class="catch-plugins-list">' . __( 'You can use any of our free plugins or premium plugins from <a href="%s" target="_blank">Catch Plugins</a>' ) . '.</p>',
438
- 'https://catchplugins.com/'
439
- );
440
- ?>
441
- <form id="plugin-filter" method="post">
442
- <?php $wp_list_table->display(); ?>
443
- </form>
444
- <?php
445
- }
446
- }
447
-
448
- $catchthemes_theme_plugin = new CatchThemesThemePlugin();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class CatchThemesThemePlugin {
4
+ public function __construct() {
5
+ remove_action( 'wp_ajax_query-themes', array( $this, 'wp_ajax_query_themes' ), 1 );
6
+ add_action( 'wp_ajax_query-themes', array( $this, 'wp_ajax_custom_query_themes' ), 1 );
7
+
8
+ add_action( 'admin_enqueue_scripts', array( $this, 'our_themes_script' ) );
9
+
10
+ if ( ! is_multisite() ) {
11
+ add_action( 'customize_register', array( $this, 'customize_register' ) );
12
+ }
13
+
14
+ global $wp_customize;
15
+ remove_action( 'wp_ajax_customize_load_themes', array( $wp_customize, 'handle_load_themes_request' ) );
16
+ add_action( 'wp_ajax_customize_load_themes', array( $this, 'handle_load_themes_request' ) );
17
+
18
+ add_filter( 'install_plugins_tabs', array( $this, 'add_our_plugins_tab' ), 1 );
19
+ add_filter( 'install_plugins_table_api_args_catchplugins', array( $this, 'catchplugins' ), 1 );
20
+ add_action( 'install_plugins_catchplugins', array( $this, 'plugins_table' ) );
21
+ }
22
+
23
+ /* Adds Catch Themes tab in Add Theme page to show all themes by Catch Themes in wordpress.org
24
+ * taken from wp-admin/includes/ajax-action.php wp_ajax_query_themes().
25
+ * Ajax handler for getting themes from themes_api().
26
+ *
27
+ * @since 3.9.0
28
+ *
29
+ * @global array $themes_allowedtags
30
+ * @global array $theme_field_defaults
31
+ */
32
+ public function wp_ajax_custom_query_themes() {
33
+ global $themes_allowedtags, $theme_field_defaults;
34
+
35
+ if ( ! current_user_can( 'install_themes' ) ) {
36
+ wp_send_json_error();
37
+ }
38
+
39
+ $args = wp_parse_args(
40
+ wp_unslash( $_REQUEST['request'] ),
41
+ array(
42
+ 'per_page' => 20,
43
+ 'fields' => array_merge(
44
+ (array) $theme_field_defaults,
45
+ array(
46
+ 'reviews_url' => true, // Explicitly request the reviews URL to be linked from the Add Themes screen.
47
+ )
48
+ ),
49
+ )
50
+ );
51
+
52
+ if ( isset( $args['browse'] ) && 'catchthemes' === $args['browse'] && ! isset( $args['user'] ) ) {
53
+ $args['author'] = 'catchthemes';
54
+ unset( $args['browse'] );
55
+ }
56
+
57
+ if ( isset( $args['browse'] ) && 'favorites' === $args['browse'] && ! isset( $args['user'] ) ) {
58
+ $user = get_user_option( 'wporg_favorites' );
59
+ if ( $user ) {
60
+ $args['user'] = $user;
61
+ }
62
+ }
63
+
64
+ $old_filter = isset( $args['browse'] ) ? $args['browse'] : 'search';
65
+
66
+ /** This filter is documented in wp-admin/includes/class-wp-theme-install-list-table.php */
67
+ $args = apply_filters( 'install_themes_table_api_args_' . $old_filter, $args );
68
+
69
+ $api = themes_api( 'query_themes', $args );
70
+
71
+ if ( is_wp_error( $api ) ) {
72
+ wp_send_json_error();
73
+ }
74
+
75
+ $update_php = network_admin_url( 'update.php?action=install-theme' );
76
+ foreach ( $api->themes as &$theme ) {
77
+ $theme->install_url = add_query_arg(
78
+ array(
79
+ 'theme' => $theme->slug,
80
+ '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ),
81
+ ),
82
+ $update_php
83
+ );
84
+
85
+ if ( current_user_can( 'switch_themes' ) ) {
86
+ if ( is_multisite() ) {
87
+ $theme->activate_url = add_query_arg(
88
+ array(
89
+ 'action' => 'enable',
90
+ '_wpnonce' => wp_create_nonce( 'enable-theme_' . $theme->slug ),
91
+ 'theme' => $theme->slug,
92
+ ),
93
+ network_admin_url( 'themes.php' )
94
+ );
95
+ } else {
96
+ $theme->activate_url = add_query_arg(
97
+ array(
98
+ 'action' => 'activate',
99
+ '_wpnonce' => wp_create_nonce( 'switch-theme_' . $theme->slug ),
100
+ 'stylesheet' => $theme->slug,
101
+ ),
102
+ admin_url( 'themes.php' )
103
+ );
104
+ }
105
+ }
106
+
107
+ if ( ! is_multisite() && current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {
108
+ $theme->customize_url = add_query_arg(
109
+ array(
110
+ 'return' => urlencode( network_admin_url( 'theme-install.php', 'relative' ) ),
111
+ ),
112
+ wp_customize_url( $theme->slug )
113
+ );
114
+ }
115
+
116
+ $theme->name = wp_kses( $theme->name, $themes_allowedtags );
117
+ $theme->author = wp_kses( $theme->author['display_name'], $themes_allowedtags );
118
+ $theme->version = wp_kses( $theme->version, $themes_allowedtags );
119
+ $theme->description = wp_kses( $theme->description, $themes_allowedtags );
120
+
121
+ $theme->stars = wp_star_rating(
122
+ array(
123
+ 'rating' => $theme->rating,
124
+ 'type' => 'percent',
125
+ 'number' => $theme->num_ratings,
126
+ 'echo' => false,
127
+ )
128
+ );
129
+
130
+ $theme->num_ratings = number_format_i18n( $theme->num_ratings );
131
+ $theme->preview_url = set_url_scheme( $theme->preview_url );
132
+ $theme->compatible_wp = is_wp_version_compatible( $theme->requires );
133
+ $theme->compatible_php = is_php_version_compatible( $theme->requires_php );
134
+
135
+ }
136
+
137
+ wp_send_json_success( $api );
138
+ }
139
+
140
+ public function our_themes_script( $hook_suffix ) {
141
+
142
+ if ( 'theme-install.php' === $hook_suffix ) {
143
+ wp_enqueue_script( 'our-themes-script', plugin_dir_url( __FILE__ ) . '../js/our-themes.js', array( 'jquery' ), '2018-05-16' );
144
+ }
145
+ }
146
+
147
+ /* Add Catch Themes Section in Theme in Customizer */
148
+ public function customize_register( $wp_customize ) {
149
+ $wp_customize->add_section(
150
+ new WP_Customize_Themes_Section(
151
+ $wp_customize,
152
+ 'catchthemes',
153
+ array(
154
+ 'title' => __( 'Themes by CatchThemes', 'catch-themes-demo-import' ),
155
+ 'action' => 'catchthemes',
156
+ 'capability' => 'install_themes',
157
+ 'panel' => 'themes',
158
+ 'priority' => 6,
159
+ )
160
+ )
161
+ );
162
+ }
163
+
164
+
165
+
166
+
167
+ /**
168
+ * Load themes into the theme browsing/installation UI.
169
+ * taken from wp-includes/cllass-wp-customize-manager.php
170
+ * @since 4.9.0
171
+ */
172
+ public function handle_load_themes_request() {
173
+ check_ajax_referer( 'switch_themes', 'nonce' );
174
+ if ( ! current_user_can( 'switch_themes' ) ) {
175
+ wp_die( -1 );
176
+ }
177
+
178
+ if ( empty( $_POST['theme_action'] ) ) {
179
+ wp_send_json_error( 'missing_theme_action' );
180
+ }
181
+ $theme_action = sanitize_key( $_POST['theme_action'] );
182
+ $themes = array();
183
+ $args = array();
184
+
185
+ // Define query filters based on user input.
186
+ if ( ! array_key_exists( 'search', $_POST ) ) {
187
+ $args['search'] = '';
188
+ } else {
189
+ $args['search'] = sanitize_text_field( wp_unslash( $_POST['search'] ) );
190
+ }
191
+
192
+ if ( ! array_key_exists( 'tags', $_POST ) ) {
193
+ $args['tag'] = '';
194
+ } else {
195
+ $args['tag'] = array_map( 'sanitize_text_field', wp_unslash( (array) $_POST['tags'] ) );
196
+ }
197
+
198
+ if ( ! array_key_exists( 'page', $_POST ) ) {
199
+ $args['page'] = 1;
200
+ } else {
201
+ $args['page'] = absint( $_POST['page'] );
202
+ }
203
+
204
+ require_once ABSPATH . 'wp-admin/includes/theme.php';
205
+
206
+ if ( 'installed' === $theme_action ) {
207
+
208
+ // Load all installed themes from wp_prepare_themes_for_js().
209
+ $themes = array( 'themes' => wp_prepare_themes_for_js() );
210
+ foreach ( $themes['themes'] as &$theme ) {
211
+ $theme['type'] = 'installed';
212
+ $theme['active'] = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme['id'] );
213
+ }
214
+ } elseif ( 'catchthemes' === $theme_action ) {
215
+
216
+ // Load WordPress.org themes from the .org API and normalize data to match installed theme objects.
217
+ if ( ! current_user_can( 'install_themes' ) ) {
218
+ wp_die( -1 );
219
+ }
220
+
221
+ // Arguments for all queries.
222
+ $wporg_args = array(
223
+ 'per_page' => 100,
224
+ 'fields' => array(
225
+ 'reviews_url' => true, // Explicitly request the reviews URL to be linked from the customizer.
226
+ ),
227
+ );
228
+
229
+ $args = array_merge( $wporg_args, $args );
230
+
231
+ if ( '' === $args['search'] && '' === $args['tag'] ) {
232
+ $args['browse'] = 'new'; // Sort by latest themes by default.
233
+ }
234
+
235
+ $args['author'] = 'catchthemes';
236
+
237
+ // Load themes from the .org API.
238
+ $themes = themes_api( 'query_themes', $args );
239
+ if ( is_wp_error( $themes ) ) {
240
+ wp_send_json_error();
241
+ }
242
+
243
+ // This list matches the allowed tags in wp-admin/includes/theme-install.php.
244
+ $themes_allowedtags = array_fill_keys(
245
+ array( 'a', 'abbr', 'acronym', 'code', 'pre', 'em', 'strong', 'div', 'p', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' ),
246
+ array()
247
+ );
248
+ $themes_allowedtags['a'] = array_fill_keys( array( 'href', 'title', 'target' ), true );
249
+ $themes_allowedtags['acronym']['title'] = true;
250
+ $themes_allowedtags['abbr']['title'] = true;
251
+ $themes_allowedtags['img'] = array_fill_keys( array( 'src', 'class', 'alt' ), true );
252
+
253
+ // Prepare a list of installed themes to check against before the loop.
254
+ $installed_themes = array();
255
+ $wp_themes = wp_get_themes();
256
+ foreach ( $wp_themes as $theme ) {
257
+ $installed_themes[] = $theme->get_stylesheet();
258
+ }
259
+ $update_php = network_admin_url( 'update.php?action=install-theme' );
260
+
261
+ // Set up properties for themes available on WordPress.org.
262
+ foreach ( $themes->themes as &$theme ) {
263
+ $theme->install_url = add_query_arg(
264
+ array(
265
+ 'theme' => $theme->slug,
266
+ '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ),
267
+ ),
268
+ $update_php
269
+ );
270
+
271
+ $theme->name = wp_kses( $theme->name, $themes_allowedtags );
272
+ $theme->version = wp_kses( $theme->version, $themes_allowedtags );
273
+ $theme->description = wp_kses( $theme->description, $themes_allowedtags );
274
+ $theme->stars = wp_star_rating(
275
+ array(
276
+ 'rating' => $theme->rating,
277
+ 'type' => 'percent',
278
+ 'number' => $theme->num_ratings,
279
+ 'echo' => false,
280
+ )
281
+ );
282
+ $theme->num_ratings = number_format_i18n( $theme->num_ratings );
283
+ $theme->preview_url = set_url_scheme( $theme->preview_url );
284
+
285
+ // Handle themes that are already installed as installed themes.
286
+ if ( in_array( $theme->slug, $installed_themes, true ) ) {
287
+ $theme->type = 'installed';
288
+ } else {
289
+ $theme->type = $theme_action;
290
+ }
291
+
292
+ // Set active based on customized theme.
293
+ $theme->active = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme->slug );
294
+
295
+ // Map available theme properties to installed theme properties.
296
+ $theme->id = $theme->slug;
297
+ $theme->screenshot = array( $theme->screenshot_url );
298
+ $theme->authorAndUri = wp_kses( $theme->author['display_name'], $themes_allowedtags );
299
+ $theme->compatibleWP = is_wp_version_compatible( $theme->requires ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName
300
+ $theme->compatiblePHP = is_php_version_compatible( $theme->requires_php ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName
301
+
302
+ if ( isset( $theme->parent ) ) {
303
+ $theme->parent = $theme->parent['slug'];
304
+ } else {
305
+ $theme->parent = false;
306
+ }
307
+ unset( $theme->slug );
308
+ unset( $theme->screenshot_url );
309
+ unset( $theme->author );
310
+ } // End foreach().
311
+ } elseif ( 'wporg' === $theme_action ) {
312
+
313
+ // Load WordPress.org themes from the .org API and normalize data to match installed theme objects.
314
+ if ( ! current_user_can( 'install_themes' ) ) {
315
+ wp_die( -1 );
316
+ }
317
+
318
+ // Arguments for all queries.
319
+ $wporg_args = array(
320
+ 'per_page' => 100,
321
+ 'fields' => array(
322
+ 'reviews_url' => true, // Explicitly request the reviews URL to be linked from the customizer.
323
+ ),
324
+ );
325
+
326
+ $args = array_merge( $wporg_args, $args );
327
+
328
+ if ( '' === $args['search'] && '' === $args['tag'] ) {
329
+ $args['browse'] = 'new'; // Sort by latest themes by default.
330
+ }
331
+
332
+ // Load themes from the .org API.
333
+ $themes = themes_api( 'query_themes', $args );
334
+ if ( is_wp_error( $themes ) ) {
335
+ wp_send_json_error();
336
+ }
337
+
338
+ // This list matches the allowed tags in wp-admin/includes/theme-install.php.
339
+ $themes_allowedtags = array_fill_keys(
340
+ array( 'a', 'abbr', 'acronym', 'code', 'pre', 'em', 'strong', 'div', 'p', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' ),
341
+ array()
342
+ );
343
+ $themes_allowedtags['a'] = array_fill_keys( array( 'href', 'title', 'target' ), true );
344
+ $themes_allowedtags['acronym']['title'] = true;
345
+ $themes_allowedtags['abbr']['title'] = true;
346
+ $themes_allowedtags['img'] = array_fill_keys( array( 'src', 'class', 'alt' ), true );
347
+
348
+ // Prepare a list of installed themes to check against before the loop.
349
+ $installed_themes = array();
350
+ $wp_themes = wp_get_themes();
351
+ foreach ( $wp_themes as $theme ) {
352
+ $installed_themes[] = $theme->get_stylesheet();
353
+ }
354
+ $update_php = network_admin_url( 'update.php?action=install-theme' );
355
+
356
+ // Set up properties for themes available on WordPress.org.
357
+ foreach ( $themes->themes as &$theme ) {
358
+ $theme->install_url = add_query_arg(
359
+ array(
360
+ 'theme' => $theme->slug,
361
+ '_wpnonce' => wp_create_nonce( 'install-theme_' . $theme->slug ),
362
+ ),
363
+ $update_php
364
+ );
365
+
366
+ $theme->name = wp_kses( $theme->name, $themes_allowedtags );
367
+ $theme->version = wp_kses( $theme->version, $themes_allowedtags );
368
+ $theme->description = wp_kses( $theme->description, $themes_allowedtags );
369
+ $theme->stars = wp_star_rating(
370
+ array(
371
+ 'rating' => $theme->rating,
372
+ 'type' => 'percent',
373
+ 'number' => $theme->num_ratings,
374
+ 'echo' => false,
375
+ )
376
+ );
377
+ $theme->num_ratings = number_format_i18n( $theme->num_ratings );
378
+ $theme->preview_url = set_url_scheme( $theme->preview_url );
379
+
380
+ // Handle themes that are already installed as installed themes.
381
+ if ( in_array( $theme->slug, $installed_themes, true ) ) {
382
+ $theme->type = 'installed';
383
+ } else {
384
+ $theme->type = $theme_action;
385
+ }
386
+
387
+ // Set active based on customized theme.
388
+ $theme->active = ( isset( $_POST['customized_theme'] ) && $_POST['customized_theme'] === $theme->slug );
389
+
390
+ // Map available theme properties to installed theme properties.
391
+ $theme->id = $theme->slug;
392
+ $theme->screenshot = array( $theme->screenshot_url );
393
+ $theme->authorAndUri = wp_kses( $theme->author['display_name'], $themes_allowedtags );
394
+ $theme->compatibleWP = is_wp_version_compatible( $theme->requires ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName
395
+ $theme->compatiblePHP = is_php_version_compatible( $theme->requires_php ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName
396
+
397
+ if ( isset( $theme->parent ) ) {
398
+ $theme->parent = $theme->parent['slug'];
399
+ } else {
400
+ $theme->parent = false;
401
+ }
402
+ unset( $theme->slug );
403
+ unset( $theme->screenshot_url );
404
+ unset( $theme->author );
405
+ } // End foreach().
406
+ } // End if().
407
+
408
+ /**
409
+ * Filters the theme data loaded in the customizer.
410
+ *
411
+ * This allows theme data to be loading from an external source,
412
+ * or modification of data loaded from `wp_prepare_themes_for_js()`
413
+ * or WordPress.org via `themes_api()`.
414
+ *
415
+ * @since 4.9.0
416
+ *
417
+ * @see wp_prepare_themes_for_js()
418
+ * @see themes_api()
419
+ * @see WP_Customize_Manager::__construct()
420
+ *
421
+ * @param array $themes Nested array of theme data.
422
+ * @param array $args List of arguments, such as page, search term, and tags to query for.
423
+ * @param WP_Customize_Manager $manager Instance of Customize manager.
424
+ */
425
+ $themes = apply_filters( 'customize_load_themes', $themes, $args, $wp_customize );
426
+
427
+ wp_send_json_success( $themes );
428
+ }
429
+
430
+ /* Plugins */
431
+ /* Adds Catch Plugins tab in Add Plugin page to show all plugins by Catch Plugins in wordpress.org */
432
+ public function add_our_plugins_tab( $tabs ) {
433
+ // Add our filter here
434
+ $tabs['catchplugins'] = _x( 'Catch Plugins', 'Plugin Installer' );
435
+
436
+ return $tabs;
437
+ }
438
+
439
+ public function catchplugins() {
440
+ /* From CORE Start */
441
+ global $paged, $tab;
442
+ wp_reset_vars( array( 'tab' ) );
443
+
444
+ $defined_class = new WP_Plugin_Install_List_Table();
445
+ $paged = $defined_class->get_pagenum();
446
+
447
+ $per_page = 30;
448
+ //$installed_plugins = catch_get_installed_plugins();
449
+
450
+ $args = array(
451
+ 'page' => $paged,
452
+ 'per_page' => $per_page,
453
+ 'fields' => array(
454
+ 'last_updated' => true,
455
+ 'icons' => true,
456
+ 'active_installs' => true,
457
+ ),
458
+ // Send the locale and installed plugin slugs to the API so it can provide context-sensitive results.
459
+ 'locale' => get_user_locale(),
460
+ //'installed_plugins' => array_keys( $installed_plugins ),
461
+ );
462
+ /* From CORE End */
463
+
464
+ // Add author filter for our plugins
465
+ $args['author'] = 'catchplugins';
466
+
467
+ return $args;
468
+ }
469
+
470
+ public function plugins_table() {
471
+ global $wp_list_table;
472
+ printf(
473
+ '<p class="catch-plugins-list">' . __( 'You can use any of our free plugins or premium plugins from <a href="%s" target="_blank">Catch Plugins</a>' ) . '.</p>',
474
+ 'https://catchplugins.com/'
475
+ );
476
+ ?>
477
+ <form id="plugin-filter" method="post">
478
+ <?php $wp_list_table->display(); ?>
479
+ </form>
480
+ <?php
481
+ }
482
+ }
483
+
484
+ $catchthemes_theme_plugin = new CatchThemesThemePlugin();
languages/catch-ids.pot CHANGED
@@ -1,11 +1,11 @@
1
- # Copyright (C) 2018-2020 Catch Plugins
2
  # This file is distributed under the GNU General Public License v3 or later.
3
  #, fuzzy
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Catch Ids\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/catch-ids\n"
8
- "POT-Creation-Date: 2020-03-10 23:15-0700\n"
9
  "PO-Revision-Date: 2016-12-07 22:52-0500\n"
10
  "Last-Translator: Pratik Shrestha <pratik@catchplugins.com>\n"
11
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
@@ -14,7 +14,7 @@ msgstr ""
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Generator: Poedit 2.3\n"
18
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;esc_attr_e;esc_attr__;_nx;"
19
  "esc_html__\n"
20
  "X-Poedit-Basepath: .\n"
@@ -36,16 +36,16 @@ msgstr ""
36
  msgid "Settings"
37
  msgstr ""
38
 
39
- #: ../includes/CatchThemesThemePlugin.php:109
40
  msgid "Themes by CatchThemes"
41
  msgstr ""
42
 
43
- #: ../includes/CatchThemesThemePlugin.php:398
44
  msgctxt "Plugin Installer"
45
  msgid "Catch Plugins"
46
  msgstr ""
47
 
48
- #: ../includes/CatchThemesThemePlugin.php:437
49
  #, php-format
50
  msgid ""
51
  "You can use any of our free plugins or premium plugins from <a href="
1
+ # Copyright (C) 2018 Catch Plugins
2
  # This file is distributed under the GNU General Public License v3 or later.
3
  #, fuzzy
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Catch Ids\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/tags/catch-ids\n"
8
+ "POT-Creation-Date: 2020-08-19 12:11-0400\n"
9
  "PO-Revision-Date: 2016-12-07 22:52-0500\n"
10
  "Last-Translator: Pratik Shrestha <pratik@catchplugins.com>\n"
11
  "Language-Team: Catch Plugins <info@catchplugins.com>\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Poedit 2.4.1\n"
18
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;esc_attr_e;esc_attr__;_nx;"
19
  "esc_html__\n"
20
  "X-Poedit-Basepath: .\n"
36
  msgid "Settings"
37
  msgstr ""
38
 
39
+ #: ../includes/CatchThemesThemePlugin.php:154
40
  msgid "Themes by CatchThemes"
41
  msgstr ""
42
 
43
+ #: ../includes/CatchThemesThemePlugin.php:434
44
  msgctxt "Plugin Installer"
45
  msgid "Catch Plugins"
46
  msgstr ""
47
 
48
+ #: ../includes/CatchThemesThemePlugin.php:473
49
  #, php-format
50
  msgid ""
51
  "You can use any of our free plugins or premium plugins from <a href="
readme.txt CHANGED
@@ -1,135 +1,138 @@
1
- === Catch IDs ===
2
- Contributors: catchplugins, catchthemes, sakinshrestha, pratikshrestha, maheshmaharjan, dreamsapana
3
- Donate link: https://catchplugins.com/plugins/catch-ids/
4
- Tags: catch-ids, simple, admin, wp-admin, show, ids, post, page, category, media, links, tag, user, id, post id, page id, category id, tag id, media id
5
- Requires at least: 4.5
6
- Tested up to: 5.4
7
- Stable tag: trunk
8
- License: GNU General Public License, version 3 (GPLv3)
9
- License URI: http://www.gnu.org/licenses/gpl-3.0.txt
10
-
11
- What this plugin does is to shows the IDs on admin section.
12
-
13
- == Description ==
14
-
15
- 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.
16
-
17
- Check out our new modular plugin [Catch Web Tools](https://wordpress.org/plugins/catch-web-tools/). Power up your WordPress site with powerful features that were till now only available to Catch Themes users. We currently offer Webmaster Tools, Open Graph, Custom CSS, Social Icons, Catch IDs and basic SEO Optimization modules and will be adding more.
18
-
19
-
20
- == Installation ==
21
-
22
- The easy way (via Dashboard) :
23
-
24
- * Go to Plugins > Add New
25
- * Type in the **Catch IDs** in Search Plugins box
26
- * Click Install Now to install the plugin
27
- * After Installation click activate to start using the **Catch IDs**
28
- * Go to **Catch IDs** from Dashboard menu
29
- * Now you will get ID's column in your post, page, category, tag and media panel
30
-
31
- Not so easy way (via FTP) :
32
-
33
- * Download the **Catch IDs**
34
- * Unarchive **Catch IDs** plugin
35
- * Copy folder with catch-ids.zip
36
- * Open the ftp \wp-content\plugins\
37
- * Paste the plug-ins folder in the folder
38
- * Go to admin panel => open item "Plugins" => activate **Catch IDs**
39
- * Go to **Catch IDs** from Dashboard menu
40
-
41
- == Screenshots ==
42
-
43
- 1. Edit Posts Page
44
- 2. Edit Media Library
45
- 3. Edit Categories
46
-
47
- == Usage ==
48
-
49
- 1. Just install and activate.
50
-
51
-
52
- == Changelog ==
53
- = 2.0 (Released: March 10, 2020) =
54
- * Compatibility check up to version 5.4
55
-
56
- = 1.9 (Released: November 12, 2019) =
57
- * Compatibility check up to version 5.3
58
-
59
- = 1.8 (Released: May 31, 2019) =
60
- * Added: Option to turn off Catch Themes and Catch Plugin tabs
61
- * Updated: Compatibility to WordPress version 5.2
62
- * Updated: Catch Themes and Catch Plugins tabs displaying code
63
-
64
- = 1.7 (Released: February 21, 2019) =
65
- * Compatibility check up to version 5.1
66
-
67
- = 1.6 (Released: December 12, 2018) =
68
- * Added: Catch Themes and Catch Plugins tabs in Add themes and Add plugins page respectively
69
- * Added: Themes by Catch Themes section under Themes panel in customizer
70
- * Compatibility check up to version 5.0
71
-
72
- = 1.5 (Released: May 07, 2018) =
73
- * Update: Moved domain from catchthemes.com to catchplugins.com
74
- * Compatibility check up to version 4.9.5
75
-
76
- = 1.4.8 =
77
- * Compatibility check up to version 4.9.4
78
- * Added: Toggle ID column option to display in selected pages
79
-
80
- = 1.4.7 =
81
- * Compatibility check up to version 4.9
82
-
83
- = 1.4.6 =
84
- * Compatibility check up to version 4.8
85
-
86
- = 1.4.5 =
87
- * Compatibility check up to version 4.7
88
-
89
- = 1.4.4 =
90
- * Fixed: ID column display issue in mobile devices
91
-
92
- = 1.4.3 =
93
- * Compatibility check up to version 4.6
94
-
95
- = 1.4.2
96
- * Compatibility check up to version 4.5
97
-
98
- = 1.4.1
99
- * Changed: ID column width size to support upto 8 digit ids
100
- * Changed: http to https in links
101
-
102
- = 1.4
103
- * Bug Fixed: IDs not showing in category and tags page(Reported by wwkipday)
104
-
105
- = 1.3
106
- * Update: Made the ID column sortable
107
- * Code Optimization
108
-
109
- = 1.2.6
110
- * Compatibility check up to version 4.4
111
-
112
- = 1.2.5
113
- * Translation ready update
114
-
115
- = 1.2.4
116
- * Compatibility check up to version 4.3
117
-
118
- = 1.2.3
119
- * Compatibility check up to version 4.1
120
- * Added plugin icons
121
-
122
- = 1.2.2
123
- * Compatibility check up to version 3.9.2
124
-
125
- = 1.2.1
126
- * Fixed ID not showing in Taxonomies (Reported by Lesley)
127
-
128
- = 1.2
129
- * Check WordPress compatibility up to version 3.9.1
130
-
131
- = 1.1
132
- * Check WordPress compatibility up to version 3.7.1
133
-
134
- = 1.0
135
- * Initial Public Release
 
 
 
1
+ === Catch IDs ===
2
+ Contributors: catchplugins, catchthemes, sakinshrestha, pratikshrestha, maheshmaharjan, dreamsapana
3
+ Donate link: https://catchplugins.com/plugins/catch-ids/
4
+ Tags: catch-ids, simple, admin, wp-admin, show, ids, post, page, category, media, links, tag, user, id, post id, page id, category id, tag id, media id
5
+ Requires at least: 4.5
6
+ Tested up to: 5.6
7
+ Stable tag: trunk
8
+ License: GNU General Public License, version 3 (GPLv3)
9
+ License URI: http://www.gnu.org/licenses/gpl-3.0.txt
10
+
11
+ What this plugin does is to shows the IDs on admin section.
12
+
13
+ == Description ==
14
+
15
+ 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.
16
+
17
+ Check out our new modular plugin [Catch Web Tools](https://wordpress.org/plugins/catch-web-tools/). Power up your WordPress site with powerful features that were till now only available to Catch Themes users. We currently offer Webmaster Tools, Open Graph, Custom CSS, Social Icons, Catch IDs and basic SEO Optimization modules and will be adding more.
18
+
19
+
20
+ == Installation ==
21
+
22
+ The easy way (via Dashboard) :
23
+
24
+ * Go to Plugins > Add New
25
+ * Type in the **Catch IDs** in Search Plugins box
26
+ * Click Install Now to install the plugin
27
+ * After Installation click activate to start using the **Catch IDs**
28
+ * Go to **Catch IDs** from Dashboard menu
29
+ * Now you will get ID's column in your post, page, category, tag and media panel
30
+
31
+ Not so easy way (via FTP) :
32
+
33
+ * Download the **Catch IDs**
34
+ * Unarchive **Catch IDs** plugin
35
+ * Copy folder with catch-ids.zip
36
+ * Open the ftp \wp-content\plugins\
37
+ * Paste the plug-ins folder in the folder
38
+ * Go to admin panel => open item "Plugins" => activate **Catch IDs**
39
+ * Go to **Catch IDs** from Dashboard menu
40
+
41
+ == Screenshots ==
42
+
43
+ 1. Edit Posts Page
44
+ 2. Edit Media Library
45
+ 3. Edit Categories
46
+
47
+ == Usage ==
48
+
49
+ 1. Just install and activate.
50
+
51
+
52
+ == Changelog ==
53
+ = 2.1 (Released: Aug 19, 2020) =
54
+ * Bug Fixed: Issue in add new theme page
55
+
56
+ = 2.0 (Released: March 10, 2020) =
57
+ * Compatibility check up to version 5.4
58
+
59
+ = 1.9 (Released: November 12, 2019) =
60
+ * Compatibility check up to version 5.3
61
+
62
+ = 1.8 (Released: May 31, 2019) =
63
+ * Added: Option to turn off Catch Themes and Catch Plugin tabs
64
+ * Updated: Compatibility to WordPress version 5.2
65
+ * Updated: Catch Themes and Catch Plugins tabs displaying code
66
+
67
+ = 1.7 (Released: February 21, 2019) =
68
+ * Compatibility check up to version 5.1
69
+
70
+ = 1.6 (Released: December 12, 2018) =
71
+ * Added: Catch Themes and Catch Plugins tabs in Add themes and Add plugins page respectively
72
+ * Added: Themes by Catch Themes section under Themes panel in customizer
73
+ * Compatibility check up to version 5.0
74
+
75
+ = 1.5 (Released: May 07, 2018) =
76
+ * Update: Moved domain from catchthemes.com to catchplugins.com
77
+ * Compatibility check up to version 4.9.5
78
+
79
+ = 1.4.8 =
80
+ * Compatibility check up to version 4.9.4
81
+ * Added: Toggle ID column option to display in selected pages
82
+
83
+ = 1.4.7 =
84
+ * Compatibility check up to version 4.9
85
+
86
+ = 1.4.6 =
87
+ * Compatibility check up to version 4.8
88
+
89
+ = 1.4.5 =
90
+ * Compatibility check up to version 4.7
91
+
92
+ = 1.4.4 =
93
+ * Fixed: ID column display issue in mobile devices
94
+
95
+ = 1.4.3 =
96
+ * Compatibility check up to version 4.6
97
+
98
+ = 1.4.2
99
+ * Compatibility check up to version 4.5
100
+
101
+ = 1.4.1
102
+ * Changed: ID column width size to support upto 8 digit ids
103
+ * Changed: http to https in links
104
+
105
+ = 1.4
106
+ * Bug Fixed: IDs not showing in category and tags page(Reported by wwkipday)
107
+
108
+ = 1.3
109
+ * Update: Made the ID column sortable
110
+ * Code Optimization
111
+
112
+ = 1.2.6
113
+ * Compatibility check up to version 4.4
114
+
115
+ = 1.2.5
116
+ * Translation ready update
117
+
118
+ = 1.2.4
119
+ * Compatibility check up to version 4.3
120
+
121
+ = 1.2.3
122
+ * Compatibility check up to version 4.1
123
+ * Added plugin icons
124
+
125
+ = 1.2.2
126
+ * Compatibility check up to version 3.9.2
127
+
128
+ = 1.2.1
129
+ * Fixed ID not showing in Taxonomies (Reported by Lesley)
130
+
131
+ = 1.2
132
+ * Check WordPress compatibility up to version 3.9.1
133
+
134
+ = 1.1
135
+ * Check WordPress compatibility up to version 3.7.1
136
+
137
+ = 1.0
138
+ * Initial Public Release