wp_ajax_ hooks
-
Hello! Can you please advise me if I can use
wp_ajax_sync_properties
as Standard Cron event Hook name? Even though it’swp_ajax_
hook and it’s used as AJAX action somewhere else?class PropertySync { public static function init() { add_action('wp_ajax_sync_properties', array(__CLASS__, 'sync_properties_callback')); } public static function sync_properties_callback() { // Function code } } PropertySync::init();
Thanks in advance!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_ajax_ hooks’ is closed to new replies.