gppro_after_css_builder
Runs any custom action after the CSS build has completed.
Write the CSS build completion time to the debug log.
add_action( 'gppro_after_css_builder', 'my_after_css_builder' ); /** * Log the time after CSS build starts */ function my_after_css_builder( $data ) { error_log( 'CSS Build ended at: ' . date( 'Y-m-d H:i:s' ) ); }