Display content based on date with PHP

后端 未结 5 868
醉酒成梦
醉酒成梦 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条回答
  •  佛祖请我去吃肉
    2021-01-15 11:11

    You can put the splash and content components in separate .php files, and simply include() then within the conditionals.

    if ($date > $contestStart) {
        include("SECRETDIR/contest.php");
    }
    
    else {
        include("SECRETDIR/splash.php");
    }
    

    You'll want to set up an .htaccess so that people cannot point their browsers towards secretdir and directly access contest.php

提交回复
热议问题