Astra_API_Init::astra_run_scheduled_docs_job()

Run scheduled job for Astra knowledge base data.


Description


Return

(void)


Source

File: admin/includes/class-astra-api-init.php

	public function astra_run_scheduled_docs_job() {
		if ( ! wp_next_scheduled( 'astra_get_knowledge_base_data' ) && ! wp_installing() ) {
			wp_schedule_event( time(), 'daily', 'astra_get_knowledge_base_data' );
		}
	}

Changelog

Changelog
Version Description
4.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.