Display content based on date with PHP

后端 未结 5 824
醉酒成梦
醉酒成梦 2021-01-15 10:15

I\'m putting together a contest site built on Wordpress. Legally, the contest has to start at midnight. To avoid being up at midnight to set up the content, i\'d like to bui

5条回答
  •  梦毁少年i
    2021-01-15 10:52

    I suppose technically your code's logic would work but yes, there are much better ways of doing this. However, for your purpose we will go simple.

    You should be comparing against a timestamp and not a string. Try this:

     $contestStart) {
    //contest content?
    }
    
    else {
    // splash content?
    }
    ?>
    

提交回复
热议问题