[ad_1]
Hello, I noticed that you are using the native PHP function time() to get the current time. However, using time() may cause timezone issues, such as UTC+8 and others, which could lead to the “coming_soon” appearing prematurely.
I suggest replacing time() with current_time('timestamp'). current_time is a WordPress function that retrieves the current time based on the timezone settings configured in WordPress. This should help resolve any timezone-related problems.
