/** * Auto-set "Offer is New" when a product is saved. * New = published within last 30 days. */ function mb_auto_flag_offer_new( $post_id, $post, $update ) { // Safety checks if ( wp_is_post_autosave( $post_id ) || wp_is_post_revision( $post_id ) ) { return; } // Only Woo products if ( $post->post_type !== 'product' ) { return; } // Only when published if ( $post->post_status !== 'publish' ) { return; } // Publish timestamp $created_ts = get_post_time( 'U', true, $post_id ); $now_ts = current_time( 'timestamp', true ); $age_days = floor( ( $now_ts - $created_ts ) / DAY_IN_SECONDS ); // JetEngine switcher must be "true" or "false" $is_new = ( $age_days <= 30 ) ? 'true' : 'false'; update_post_meta( $post_id, MB_OFFER_NEW_META_KEY, $is_new ); } add_action( 'save_post', 'mb_auto_flag_offer_new', 20, 3 ); Member Benefits Programs | Employee & Corporate Benefits Australia
VFESA Registration Form