在 Wordpress 的 2 个不同时间同时显示 2 个页面 URL
Show 2 pages at 2 different times at same URL in Wordpress
我在 Wordpress 中有一个注册表单,它是建立在像这样的 Formidable Forms 插件上的
mysite.com/registration/
注册截止日期结束后(我会将日期保存在数据库中),同一注册页面将显示一条消息 "Registration is Over"
这是任何可用插件都可以做到的吗?
谢谢
只需在您的注册页面模板上写一个条件:
$now = new DateTime();
$deadline = new DateTime('2016-04-28 1:00:00');
if ( $now > $deadline ) {
// Registration is over!
} else {
// show the registration form
}
我在 Wordpress 中有一个注册表单,它是建立在像这样的 Formidable Forms 插件上的
mysite.com/registration/
注册截止日期结束后(我会将日期保存在数据库中),同一注册页面将显示一条消息 "Registration is Over" 这是任何可用插件都可以做到的吗?
谢谢
只需在您的注册页面模板上写一个条件:
$now = new DateTime();
$deadline = new DateTime('2016-04-28 1:00:00');
if ( $now > $deadline ) {
// Registration is over!
} else {
// show the registration form
}