You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# WP Cron Inspector Lite
1
+
# Cron Inspector Lite
2
2
3
3
Find duplicate, stuck, and suspicious WordPress cron events before they cause support issues.
4
4
5
5
This plugin is read-only in the initial version. It lists scheduled WP-Cron events, highlights duplicate hooks, flags unusually frequent recurring events, and provides a support-friendly report.
6
6
7
7
## Screenshot
8
8
9
-

9
+

Copy file name to clipboardExpand all lines: readme.txt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
=== WP Cron Inspector Lite ===
1
+
=== Cron Inspector Lite ===
2
2
Contributors: nariyanto
3
3
Tags: cron, wp-cron, debugging, support, admin
4
4
Requires at least: 6.0
@@ -12,7 +12,7 @@ Find duplicate, stuck, and suspicious WordPress cron events before they cause su
12
12
13
13
== Description ==
14
14
15
-
WP Cron Inspector Lite is a read-only admin utility for support and debugging workflows. It helps you inspect scheduled WP-Cron events, identify duplicate hooks, flag unusually frequent events, and spot overdue jobs.
15
+
Cron Inspector Lite is a read-only admin utility for support and debugging workflows. It helps you inspect scheduled WP-Cron events, identify duplicate hooks, flag unusually frequent events, and spot overdue jobs.
16
16
17
17
Initial scope:
18
18
@@ -28,7 +28,7 @@ No destructive cleanup actions are included in v0.1.0.
28
28
== Installation ==
29
29
30
30
1. Upload the plugin folder to `/wp-content/plugins/`.
31
-
2. Activate **WP Cron Inspector Lite** from the Plugins screen.
31
+
2. Activate **Cron Inspector Lite** from the Plugins screen.
<li><?php/* translators: %d: total number of scheduled cron events. */printf(esc_html__('Total events: %d', 'wp-cron-inspector-lite'), (int) $report['summary']['total_events']); ?></li>
40
-
<li><?php/* translators: %d: number of cron event instances whose hook appears more than once. */printf(esc_html__('Duplicate event instances: %d', 'wp-cron-inspector-lite'), (int) $report['summary']['duplicate_hook_count']); ?></li>
41
-
<li><?php/* translators: %d: number of cron hooks scheduled more frequently than hourly. */printf(esc_html__('Frequent hooks: %d', 'wp-cron-inspector-lite'), (int) $report['summary']['frequent_hook_count']); ?></li>
42
-
<li><?php/* translators: %d: number of cron events scheduled before the current time. */printf(esc_html__('Overdue events: %d', 'wp-cron-inspector-lite'), (int) $report['summary']['overdue_event_count']); ?></li>
39
+
<li><?php/* translators: %d: total number of scheduled cron events. */printf(esc_html__('Total events: %d', 'cron-inspector-lite'), (int) $report['summary']['total_events']); ?></li>
40
+
<li><?php/* translators: %d: number of cron event instances whose hook appears more than once. */printf(esc_html__('Duplicate event instances: %d', 'cron-inspector-lite'), (int) $report['summary']['duplicate_hook_count']); ?></li>
41
+
<li><?php/* translators: %d: number of cron hooks scheduled more frequently than hourly. */printf(esc_html__('Frequent hooks: %d', 'cron-inspector-lite'), (int) $report['summary']['frequent_hook_count']); ?></li>
42
+
<li><?php/* translators: %d: number of cron events scheduled before the current time. */printf(esc_html__('Overdue events: %d', 'cron-inspector-lite'), (int) $report['summary']['overdue_event_count']); ?></li>
<h2><?phpechoesc_html__('Copy support report', 'wp-cron-inspector-lite'); ?></h2>
56
-
<p><?phpechoesc_html__('Use this read-only report in support tickets or debugging notes. Review it before sharing externally.', 'wp-cron-inspector-lite'); ?></p>
55
+
<h2><?phpechoesc_html__('Copy support report', 'cron-inspector-lite'); ?></h2>
56
+
<p><?phpechoesc_html__('Use this read-only report in support tickets or debugging notes. Review it before sharing externally.', 'cron-inspector-lite'); ?></p>
0 commit comments