mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
9 lines
206 B
Bash
Executable file
9 lines
206 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# List WP-Cron events without registered hooks.
|
|
#
|
|
# VERSION :0.1.0
|
|
|
|
set -e
|
|
|
|
wp eval 'array_map(function($c){$h=array_key_first($c);if(!has_action($h))echo $h,"\n";},_get_cron_array());'
|