WP Content Extractor can be used via WP-CLI for manual operations.
Trigger content extraction manually:
wp eval 'if (function_exists("ce_extract_content")) { ce_extract_content(); }'View scheduled cron events:
wp cron event listLook for ce_daily_event in the list.
Trigger WordPress cron manually:
wp cron event run ce_daily_eventA custom WP-CLI command could be added:
wp content-extractor extract
wp content-extractor status
wp content-extractor resetThis would require adding a custom WP-CLI command class to the plugin.