有动态倒计时的网站?

时间:2018-02-24 14:10:42

标签: wordpress countdown

我想创建一个网站,该网站将显示活动结束时的倒计时。将会有几个具有特定名称和持续时间的标准事件,我只想选择事件并按“播放按钮”。 这可以在wordpress中完成吗?

提前谢谢。

1 个答案:

答案 0 :(得分:0)

Wordpress有很多倒计时插件。

例如这一个:https://wordpress.org/plugins/wp-custom-countdown/非常容易使用帖子上的短代码按钮。有什么具体需要做的吗?

这些插件都会生成放置计时器并启动它的短代码。假设你有一个按钮。

<button id="startTimer" onclick="startTimer()">Start</button>

startTimer()函数:

function startTimer(){
   do_shortcode('shortcodefortimerhere')
}